Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7163372

Browse files
authoredMar 9, 2017
Fix event handler processing algorithm to match implementations
* Remove the special cancelation behavior for onmouseover. This was only ever implemented by Gecko. Fixes #423 in part. * Update the special cancelation and argument behavior for onerror to a reasonable set of intersection semantics among current implementations. This fixes #2296, and fixes the rest of #423. See especially #2296 (comment). * Editorial: links directly to Web IDL's definition of "invoke" instead of indirecting. * Editorial: clarifies that BeforeUnloadEvents always have type "beforeunload", instead of making that part of the conditional.
1 parent f4c4f38 commit 7163372

File tree

1 file changed

+41
-27
lines changed

1 file changed

+41
-27
lines changed
 

‎source

+41-27
Original file line numberDiff line numberDiff line change
@@ -88676,19 +88676,30 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
8867688676

8867788677
<li><p>If <var>callback</var> is null, then abort these steps.</p></li>
8867888678

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+
8867988692
<li>
8868088693

8868188694
<p>Process the <code>Event</code> object <var>E</var> as follows:</p>
8868288695

8868388696
<dl class="switch">
8868488697

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>
8868888699

8868988700
<dd>
8869088701

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
8869288703
arguments, the first one having the value of <var>E</var>'s <code
8869388704
data-x="dom-ErrorEvent-message">message</code> attribute, the second having the value of
8869488705
<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> {
8870688717

8870788718
<dd>
8870888719

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>
8871088721
with one argument, the value of which is the <code>Event</code> object <var>E</var>,
8871188722
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>
8871288723

8871388724
</dd>
8871488725

8871588726
</dl>
8871688727

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-
8872088728
<p>If an exception gets thrown by the callback, end these steps and allow the exception to
8872188729
propagate. (It will propagate to the <span data-x="concept-event-dispatch">DOM event dispatch
8872288730
logic</span>, which will then <span>report the exception</span>.)</p>
@@ -88729,19 +88737,14 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
8872988737

8873088738
<dl class="switch">
8873188739

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>
8874288741
<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
8874588748
value</var> will therefore have been coerced into either the value null or a <code
8874688749
data-x="idl-DOMString">DOMString</code>.</p>
8874788750

@@ -88757,12 +88760,14 @@ dictionary <dfn>PromiseRejectionEventInit</dfn> : <span>EventInit</span> {
8875788760
</ol>
8875888761
</dd>
8875988762

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+
8876088767
<dt>Otherwise</dt>
8876188768
<dd><p>If <var>return value</var> is false, then set <var>E</var>'s <span>canceled
8876288769
flag</span>.</p></dd>
8876388770

88764-
<!-- IE actually uncancels the event if the function returns true -->
88765-
8876688771
</dl>
8876788772

8876888773
</li>
@@ -88795,11 +88800,20 @@ typedef <span>EventHandlerNonNull</span>? <dfn>EventHandler</dfn>;</pre>
8879588800

8879688801
</div>
8879788802

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>
8880388817

8880488818
<p>For historical reasons, the <code data-x="handler-onerror">onerror</code> handler has different
8880588819
arguments:</p>

0 commit comments

Comments
 (0)
Please sign in to comment.