mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-26 22:38:51 +00:00
LibWeb/HTML: Make ErrorEvent::create a trusted event
Matching DOM::Event.
This commit is contained in:
parent
aa5207199f
commit
a5bdc56063
Notes:
github-actions[bot]
2024-12-16 13:04:03 +00:00
Author: https://github.com/shannonbooth
Commit: a5bdc56063
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2920
3 changed files with 42 additions and 2 deletions
|
@ -14,12 +14,14 @@ GC_DEFINE_ALLOCATOR(ErrorEvent);
|
|||
|
||||
GC::Ref<ErrorEvent> ErrorEvent::create(JS::Realm& realm, FlyString const& event_name, ErrorEventInit const& event_init)
|
||||
{
|
||||
return realm.create<ErrorEvent>(realm, event_name, event_init);
|
||||
auto event = realm.create<ErrorEvent>(realm, event_name, event_init);
|
||||
event->set_is_trusted(true);
|
||||
return event;
|
||||
}
|
||||
|
||||
WebIDL::ExceptionOr<GC::Ref<ErrorEvent>> ErrorEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, ErrorEventInit const& event_init)
|
||||
{
|
||||
return create(realm, event_name, event_init);
|
||||
return realm.create<ErrorEvent>(realm, event_name, event_init);
|
||||
}
|
||||
|
||||
ErrorEvent::ErrorEvent(JS::Realm& realm, FlyString const& event_name, ErrorEventInit const& event_init)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue