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/SubmitEvent.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2023-03-05 10:58:45 +01:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<SubmitEvent>> SubmitEvent::create(JS::Realm& realm, FlyString const& event_name, SubmitEventInit const& event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
{
|
2023-02-15 19:14:17 +01:00
|
|
|
return MUST_OR_THROW_OOM(realm.heap().allocate<SubmitEvent>(realm, realm, event_name, event_init));
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
2023-03-05 10:58:45 +01:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<SubmitEvent>> SubmitEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, SubmitEventInit 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-05 10:58:45 +01:00
|
|
|
SubmitEvent::SubmitEvent(JS::Realm& realm, FlyString const& event_name, SubmitEventInit const& event_init)
|
|
|
|
: DOM::Event(realm, event_name.to_deprecated_fly_string(), event_init)
|
2022-08-08 22:29:40 +02:00
|
|
|
, m_submitter(event_init.submitter)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SubmitEvent::~SubmitEvent() = default;
|
|
|
|
|
2023-01-28 12:33:35 -05:00
|
|
|
JS::ThrowCompletionOr<void> SubmitEvent::initialize(JS::Realm& realm)
|
2023-01-10 06:28:20 -05:00
|
|
|
{
|
2023-01-28 12:33:35 -05:00
|
|
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
2023-01-10 06:28:20 -05:00
|
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::SubmitEventPrototype>(realm, "SubmitEvent"));
|
2023-01-28 12:33:35 -05:00
|
|
|
|
|
|
|
return {};
|
2023-01-10 06:28:20 -05:00
|
|
|
}
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
void SubmitEvent::visit_edges(Cell::Visitor& visitor)
|
|
|
|
{
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
visitor.visit(m_submitter.ptr());
|
|
|
|
}
|
|
|
|
|
2022-08-08 22:29:40 +02:00
|
|
|
}
|