2022-08-08 22:29:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2022-09-25 16:38:21 -06:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2022-08-08 22:29:40 +02:00
|
|
|
#include <LibWeb/HTML/PageTransitionEvent.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DEFINE_ALLOCATOR(PageTransitionEvent);
|
|
|
|
|
2023-08-13 13:05:26 +02:00
|
|
|
JS::NonnullGCPtr<PageTransitionEvent> PageTransitionEvent::create(JS::Realm& realm, FlyString const& event_name, PageTransitionEventInit const& event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
2023-08-13 13:05:26 +02:00
|
|
|
return realm.heap().allocate<PageTransitionEvent>(realm, realm, event_name, event_init);
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
2023-03-04 21:05:43 +01:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<PageTransitionEvent>> PageTransitionEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, PageTransitionEventInit const& event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
2022-09-25 16:38:21 -06:00
|
|
|
return create(realm, event_name, event_init);
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
2023-03-04 21:05:43 +01:00
|
|
|
PageTransitionEvent::PageTransitionEvent(JS::Realm& realm, FlyString const& event_name, PageTransitionEventInit const& event_init)
|
2023-04-06 16:12:33 +02:00
|
|
|
: DOM::Event(realm, event_name, event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
, m_persisted(event_init.persisted)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PageTransitionEvent::~PageTransitionEvent() = default;
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void PageTransitionEvent::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2023-11-22 12:55:21 +13:00
|
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::PageTransitionEventPrototype>(realm, "PageTransitionEvent"_fly_string));
|
2023-01-10 06:28:20 -05:00
|
|
|
}
|
|
|
|
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|