diff --git a/dom.bs b/dom.bs index 81d03af1f..f50a8250d 100644 --- a/dom.bs +++ b/dom.bs @@ -374,7 +374,7 @@ been {{Event/AT_TARGET}}.

Interface {{Event}}

-[Exposed=(Window,Worker,AudioWorklet)]
+[Exposed=*]
 interface Event {
   constructor(DOMString type, optional EventInit eventInitDict = {});
 
@@ -789,7 +789,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 = {});
 
@@ -937,7 +937,7 @@ for historical reasons.
 

Interface {{EventTarget}}

-[Exposed=(Window,Worker,AudioWorklet)]
+[Exposed=*]
 interface EventTarget {
   constructor();
 
@@ -1723,7 +1723,7 @@ function doAmazingness({signal}) {
 

Interface {{AbortController}}

-[Exposed=(Window,Worker)]
+[Exposed=*]
 interface AbortController {
   constructor();
 
@@ -1769,7 +1769,7 @@ constructor steps are:
 

Interface {{AbortSignal}}

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