2022-08-08 17:29:40 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2022-08-08 17:29:40 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2026-04-18 05:54:06 -03:00
|
|
|
#include <LibWeb/Bindings/CloseEvent.h>
|
2022-09-25 19:38:21 -03:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2022-08-08 17:29:40 -03:00
|
|
|
#include <LibWeb/HTML/CloseEvent.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC_DEFINE_ALLOCATOR(CloseEvent);
|
2023-11-19 15:47:52 -03:00
|
|
|
|
2026-05-01 14:01:23 -03:00
|
|
|
GC::Ref<CloseEvent> CloseEvent::create(JS::Realm& realm, FlyString const& event_name, Bindings::CloseEventInit const& event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
{
|
2024-11-13 13:50:17 -03:00
|
|
|
return realm.create<CloseEvent>(realm, event_name, event_init);
|
2022-08-08 17:29:40 -03:00
|
|
|
}
|
|
|
|
|
|
2026-05-01 14:01:23 -03:00
|
|
|
WebIDL::ExceptionOr<GC::Ref<CloseEvent>> CloseEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::CloseEventInit const& event_init)
|
2022-09-25 19:38:21 -03:00
|
|
|
{
|
|
|
|
|
return create(realm, event_name, event_init);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-01 14:01:23 -03:00
|
|
|
CloseEvent::CloseEvent(JS::Realm& realm, FlyString const& event_name, Bindings::CloseEventInit const& event_init)
|
2023-04-06 11:12:33 -03:00
|
|
|
: DOM::Event(realm, event_name, event_init)
|
2022-08-08 17:29:40 -03:00
|
|
|
, m_was_clean(event_init.was_clean)
|
|
|
|
|
, m_code(event_init.code)
|
|
|
|
|
, m_reason(event_init.reason)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CloseEvent::~CloseEvent() = default;
|
|
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
void CloseEvent::initialize(JS::Realm& realm)
|
2023-01-10 08:28:20 -03:00
|
|
|
{
|
2024-03-16 09:13:08 -03:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(CloseEvent);
|
2025-04-20 11:22:57 -03:00
|
|
|
Base::initialize(realm);
|
2023-01-10 08:28:20 -03:00
|
|
|
}
|
|
|
|
|
|
2022-08-08 17:29:40 -03:00
|
|
|
}
|