Skip to content

Commit

Permalink
Expose events/aborts everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger authored and annevk committed Oct 14, 2021
1 parent 3c6704a commit 15f19fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ been {{Event/AT_TARGET}}.
<h3 id=interface-event>Interface {{Event}}</h3>

<pre class=idl>
[Exposed=(Window,Worker,AudioWorklet)]
[Exposed=*]
interface Event {
constructor(DOMString type, optional EventInit eventInitDict = {});

Expand Down Expand Up @@ -787,7 +787,7 @@ workers or worklets, and is inaccurate for events dispatched in <a>shadow trees<
<h3 id=interface-customevent>Interface {{CustomEvent}}</h3>

<pre class=idl>
[Exposed=(Window,Worker)]
[Exposed=*]
interface CustomEvent : Event {
constructor(DOMString type, optional CustomEventInit eventInitDict = {});

Expand Down Expand Up @@ -935,7 +935,7 @@ for historical reasons.
<h3 id=interface-eventtarget>Interface {{EventTarget}}</h3>

<pre class=idl>
[Exposed=(Window,Worker,AudioWorklet)]
[Exposed=*]
interface EventTarget {
constructor();

Expand Down Expand Up @@ -1721,7 +1721,7 @@ function doAmazingness({signal}) {
<h3 id=interface-abortcontroller>Interface {{AbortController}}</h3>

<pre class=idl>
[Exposed=(Window,Worker)]
[Exposed=*]
interface AbortController {
constructor();

Expand Down Expand Up @@ -1767,7 +1767,7 @@ constructor steps are:
<h3 id=interface-AbortSignal>Interface {{AbortSignal}}</h3>

<pre class=idl>
[Exposed=(Window,Worker)]
[Exposed=*]
interface AbortSignal : EventTarget {
[NewObject] static AbortSignal abort();

Expand Down

0 comments on commit 15f19fb

Please sign in to comment.