LibWeb: Update DOM IDL specs

I noticed some of these were running behind the upstream spec.
This commit is contained in:
Jelle Raaijmakers 2024-10-14 11:55:51 +02:00 committed by Tim Flynn
commit d5fd29adb7
Notes: github-actions[bot] 2024-10-14 16:00:25 +00:00
18 changed files with 33 additions and 52 deletions

View file

@ -1,13 +1,13 @@
#import <DOM/Event.idl>
// https://dom.spec.whatwg.org/#interface-customevent
[Exposed=(Window,Worker)]
[Exposed=*]
interface CustomEvent : Event {
constructor(DOMString type, optional CustomEventInit eventInitDict = {});
readonly attribute any detail;
undefined initCustomEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false, optional any detail = null);
undefined initCustomEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false, optional any detail = null); // legacy
};
dictionary CustomEventInit : EventInit {