@@ -88676,19 +88676,30 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
88676
88676
88677
88677
<li><p>If <var>callback</var> is null, then abort these steps.</p></li>
88678
88678
88679
+ <li>
88680
+ <p>Let <var>special error event handling</var> be true if <var>E</var> is an
88681
+ <code>ErrorEvent</code> object and <var>E</var>'s <code
88682
+ data-x="dom-Event-currentTarget">currentTarget</code> implements the
88683
+ <code>WindowOrWorkerGlobalScope</code> mixin. Otherwise, let <var>special error event
88684
+ handling</var> be false.</p>
88685
+
88686
+ <p class="note">In this case, <var>E</var>'s <code data-x="dom-Event-type">type</code> will
88687
+ always be <code data-x="event-error">error</code>, since the only <span data-x="event
88688
+ handlers">event handler</span> is called with <code>ErrorEvent</code> instances is <code
88689
+ data-x="handler-onerror">onerror</code>.</p>
88690
+ </li>
88691
+
88679
88692
<li>
88680
88693
88681
88694
<p>Process the <code>Event</code> object <var>E</var> as follows:</p>
88682
88695
88683
88696
<dl class="switch">
88684
88697
88685
- <dt>If <var>E</var> is an <code>ErrorEvent</code> object and the <span data-x="event
88686
- handler IDL attributes" data-export="">event handler IDL attribute</span>'s type is
88687
- <code>OnErrorEventHandler</code></dt>
88698
+ <dt>If <var>special error event handling</var> is true</dt>
88688
88699
88689
88700
<dd>
88690
88701
88691
- <p><span data-x="concept-invoke-event-handler ">Invoke</span> <var>callback</var> with five
88702
+ <p><span data-x="es-invoking-callback-functions ">Invoke</span> <var>callback</var> with five
88692
88703
arguments, the first one having the value of <var>E</var>'s <code
88693
88704
data-x="dom-ErrorEvent-message">message</code> attribute, the second having the value of
88694
88705
<var>E</var>'s <code data-x="dom-ErrorEvent-filename">filename</code> attribute, the third
@@ -88706,17 +88717,14 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
88706
88717
88707
88718
<dd>
88708
88719
88709
- <p><span data-x="concept-invoke-event-handler ">Invoke</span> <var>callback</var>
88720
+ <p><span data-x="es-invoking-callback-functions ">Invoke</span> <var>callback</var>
88710
88721
with one argument, the value of which is the <code>Event</code> object <var>E</var>,
88711
88722
with the <i data-x="dfn-callback-this-value">callback this value</i> set to <var>E</var>'s <code data-x="dom-Event-currentTarget">currentTarget</code>. Let <var>return value</var> be the callback's return value. <ref spec=WEBIDL></p>
88712
88723
88713
88724
</dd>
88714
88725
88715
88726
</dl>
88716
88727
88717
- <p>In this step, <dfn data-x="concept-invoke-event-handler">invoke</dfn> means to <span
88718
- data-x="es-invoking-callback-functions">invoke the Web IDL callback function</span>.</p>
88719
-
88720
88728
<p>If an exception gets thrown by the callback, end these steps and allow the exception to
88721
88729
propagate. (It will propagate to the <span data-x="concept-event-dispatch">DOM event dispatch
88722
88730
logic</span>, which will then <span>report the exception</span>.)</p>
@@ -88729,19 +88737,14 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
88729
88737
88730
88738
<dl class="switch">
88731
88739
88732
- <dt>If <var>E</var>'s <code data-x="dom-event-type">type</code> is <code
88733
- data-x="event-mouseover">mouseover</code></dt>
88734
- <dt>If <var>E</var>'s <code data-x="dom-event-type">type</code> is <code
88735
- data-x="event-error">error</code> and <var>E</var> is an <code>ErrorEvent</code> object</dt>
88736
- <dd><p>If <var>return value</var> is true, then set <var>E</var>'s <span>canceled
88737
- flag</span>.</p></dd>
88738
-
88739
- <dt>If <var>E</var>'s <code data-x="dom-event-type">type</code> is <code
88740
- data-x="event-beforeunload">beforeunload</code> and <var>E</var> is a
88741
- <code>BeforeUnloadEvent</code> object</dt>
88740
+ <dt>If <var>E</var> is a <code>BeforeUnloadEvent</code> object</dt>
88742
88741
<dd>
88743
- <p class="note">The <span data-x="event handler IDL attributes">event handler IDL
88744
- attribute</span>'s type is <code>OnBeforeUnloadEventHandler</code>, and the <var>return
88742
+ <p class="note">This can only occur when <var>E</var>'s <code
88743
+ data-x="dom-Event-type">type</code> is <code data-x="event-beforeunload">beforeunload</code>
88744
+ and when the <span data-x="event handler IDL attributes">event handler IDL attribute</span>'s
88745
+ type is <code>OnBeforeUnloadEventHandler</code>, since the only <span data-x="event
88746
+ handlers">event handler</span> that is called with <code>BeforeUnloadEvent</code> instances is
88747
+ <code data-x="handler-window-onbeforeunload">onbeforeunload</code>. In this case, <var>return
88745
88748
value</var> will therefore have been coerced into either the value null or a <code
88746
88749
data-x="idl-DOMString">DOMString</code>.</p>
88747
88750
@@ -88757,12 +88760,14 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
88757
88760
</ol>
88758
88761
</dd>
88759
88762
88763
+ <dt>If <var>special error event handling</var> is true</dt>
88764
+ <dd><p>If <var>return value</var> is true, then set <var>E</var>'s <span>canceled
88765
+ flag</span>.</p></dd>
88766
+
88760
88767
<dt>Otherwise</dt>
88761
88768
<dd><p>If <var>return value</var> is false, then set <var>E</var>'s <span>canceled
88762
88769
flag</span>.</p></dd>
88763
88770
88764
- <!-- IE actually uncancels the event if the function returns true -->
88765
-
88766
88771
</dl>
88767
88772
88768
88773
</li>
@@ -88795,11 +88800,20 @@ typedef <span>EventHandlerNonNull</span>? <dfn>EventHandler</dfn>;</pre>
88795
88800
88796
88801
</div>
88797
88802
88798
- <p class="note">The return value of the function affects whether the event is canceled or not:
88799
- <span w-nodev>as described above,</span> if the return value is false, the event is canceled
88800
- (except for <code data-x="event-mouseover">mouseover</code> events, where the return value has to
88801
- be true to cancel the event). With <code data-x="event-beforeunload">beforeunload</code> events,
88802
- the value is instead used to determine whether or not to prompt about unloading the document.</p>
88803
+ <div class="note">
88804
+ <p>The return value of the function affects whether the event is canceled or not: <span
88805
+ w-nodev>as described above, </span>if the return value is false, the event is canceled.</p>
88806
+
88807
+ <p>There are two exceptions in the platform, for historical reasons:</p>
88808
+
88809
+ <ul>
88810
+ <li><p>The <code data-x="handler-onerror">onerror</code> handlers on global objects, where
88811
+ returning <em>true</em> cancels the event</p></li>
88812
+
88813
+ <li><p>The <code data-x="handler-window-onbeforeunload">onbeforeunload</code> handler, where
88814
+ returning any non-null and non-undefined value will cancel the event.</p></li>
88815
+ </ul>
88816
+ </div>
88803
88817
88804
88818
<p>For historical reasons, the <code data-x="handler-onerror">onerror</code> handler has different
88805
88819
arguments:</p>
0 commit comments