diff --git a/dom.bs b/dom.bs index 14a28e065..050628809 100644 --- a/dom.bs +++ b/dom.bs @@ -370,7 +370,7 @@ been {{Event/AT_TARGET}}.

Interface {{Event}}

-[Exposed=(Window,Worker,AudioWorklet)]
+[Exposed=*]
 interface Event {
   constructor(DOMString type, optional EventInit eventInitDict = {});
 
@@ -785,7 +785,7 @@ workers or worklets, and is inaccurate for events dispatched in shadow trees<
 

Interface {{CustomEvent}}

-[Exposed=(Window,Worker)]
+[Exposed=*]
 interface CustomEvent : Event {
   constructor(DOMString type, optional CustomEventInit eventInitDict = {});
 
@@ -933,7 +933,7 @@ for historical reasons.
 

Interface {{EventTarget}}

-[Exposed=(Window,Worker,AudioWorklet)]
+[Exposed=*]
 interface EventTarget {
   constructor();
 
@@ -1720,7 +1720,7 @@ example of an API where the latter made sense.
 

Interface {{AbortController}}

-[Exposed=(Window,Worker)]
+[Exposed=*]
 interface AbortController {
   constructor();
 
@@ -1768,7 +1768,7 @@ to signal abort on this's s
 

Interface {{AbortSignal}}

-[Exposed=(Window,Worker)]
+[Exposed=*]
 interface AbortSignal : EventTarget {
   [NewObject] static AbortSignal abort(optional any reason);