mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 17:37:33 +02:00
Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/SubmitEvent.h>
|
|
#include <LibWeb/HTML/SubmitEvent.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
GC_DEFINE_ALLOCATOR(SubmitEvent);
|
|
|
|
GC::Ref<SubmitEvent> SubmitEvent::create(JS::Realm& realm, FlyString const& event_name, Bindings::SubmitEventInit const& event_init)
|
|
{
|
|
auto event = realm.create<SubmitEvent>(realm, event_name, event_init);
|
|
event->set_is_trusted(true);
|
|
return event;
|
|
}
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<SubmitEvent>> SubmitEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, Bindings::SubmitEventInit const& event_init)
|
|
{
|
|
return create(realm, event_name, event_init);
|
|
}
|
|
|
|
SubmitEvent::SubmitEvent(JS::Realm& realm, FlyString const& event_name, Bindings::SubmitEventInit const& event_init)
|
|
: DOM::Event(realm, event_name, event_init)
|
|
, m_submitter(event_init.submitter)
|
|
{
|
|
}
|
|
|
|
SubmitEvent::~SubmitEvent() = default;
|
|
|
|
void SubmitEvent::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(SubmitEvent);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void SubmitEvent::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_submitter);
|
|
}
|
|
|
|
}
|