Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isTrusted all the things #1986

Merged
merged 1 commit into from
Nov 16, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -48571,20 +48571,13 @@ interface <dfn>HTMLSelectElement</dfn> : <span>HTMLElement</span> {
a task</span>, using the <span>user interaction task source</span>, to run these steps:</p>

<ol>
<li><p>Let <var>isTrusted</var> be false, if the <span>JavaScript execution context stack</span>
is not empty, and true otherwise.</p></li>

<li><p><span data-x="concept-event-fire">Fire an event</span> named <code
data-x="event-input">input</code> at the <code>select</code> element, with the <code
data-x="dom-Event-bubbles">bubbles</code> attribute initialized to true and the <code
data-x="dom-Event-isTrusted">isTrusted</code> attribute initialized to
<var>isTrusted</var>.</p></li>
data-x="dom-Event-bubbles">bubbles</code> attribute initialized to true.</p></li>

<li><p><span data-x="concept-event-fire">Fire an event</span> named <code
data-x="event-change">change</code> at the <code>select</code> element, with the <code
data-x="dom-Event-bubbles">bubbles</code> attribute initialized to true and the <code
data-x="dom-Event-isTrusted">isTrusted</code> attribute initialized to
<var>isTrusted</var>.</p></li>
data-x="dom-Event-bubbles">bubbles</code> attribute initialized to true.</p></li>
</ol>

<p>The <span data-x="concept-form-reset-control">reset algorithm</span> for <code>select</code>
Expand Down Expand Up @@ -55396,15 +55389,10 @@ fur
data-x="concept-form-reset">reset</dfn>, run these steps:</p>

<ol>
<li><p>Let <var>isTrusted</var> false, if this algorithm is invoked by the <code
data-x="dom-form-reset">reset()</code> method, and true otherwise.</p></li>

<li><p>Let <var>reset</var> be the result of <span data-x="concept-event-fire">firing an
event</span> named <code data-x="event-reset">reset</code> at <var>form</var>, with the <code
data-x="dom-Event-bubbles">bubbles</code> attribute initialized to true, <code
data-x="dom-Event-cancelable">cancelable</code> attribute initialized to true, and <code
data-x="dom-Event-isTrusted">isTrusted</code> attribute initialized to
<var>isTrusted</var>.</p></li>
data-x="dom-Event-bubbles">bubbles</code> and <code
data-x="dom-Event-cancelable">cancelable</code> attributes initialized to true.</p></li>

<li><p>If <var>reset</var> is true, then invoke the <span
data-x="concept-form-reset-control">reset algorithm</span> of each <span
Expand Down