Skip to content

Commit

Permalink
[e] (0) rename a confusingly-named flag
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@6337 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 29, 2011
1 parent 1ac64c9 commit e16649e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions complete.html
Expand Up @@ -239,7 +239,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1>Web Applications 1.0</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 28 July 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 29 July 2011</h2>
</hgroup><dl><dt>Multiple-page version:</dt>
<dd><a href=http://www.whatwg.org/specs/web-apps/current-work/complete/>http://www.whatwg.org/specs/web-apps/current-work/complete/</a></dd>
<dt>One-page version:</dt>
Expand Down Expand Up @@ -41747,7 +41747,7 @@ <h4 id=categories><span class=secno>4.10.2 </span>Categories</h4>

<hr><p>The <dfn id=dom-form-submit title=dom-form-submit><code>submit()</code></dfn>
method, when invoked, must <a href=#concept-form-submit title=concept-form-submit>submit</a> the <code><a href=#the-form-element>form</a></code>
element from the <code><a href=#the-form-element>form</a></code> element itself, with the <var title="">scripted-submit</var> flag set.</p>
element from the <code><a href=#the-form-element>form</a></code> element itself, with the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag set.</p>

<p>The <dfn id=dom-form-reset title=dom-form-reset><code>reset()</code></dfn>
method, when invoked, must run the following steps:</p>
Expand Down Expand Up @@ -51403,7 +51403,7 @@ <h5 id=implicit-submission><span class=secno>4.10.22.2 </span>Implicit submissio
<h5 id=form-submission-algorithm><span class=secno>4.10.22.3 </span>Form submission algorithm</h5>

<p>When a <code><a href=#the-form-element>form</a></code> element <var title="">form</var> is <dfn id=concept-form-submit title=concept-form-submit>submitted</dfn> from an element <var title="">submitter</var> (typically a button), optionally with a
<var title="">scripted-submit</var> flag set, the user agent must
<var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag set, the user agent must
run the following steps:</p>

<ol><li><p>Let <var title="">form document</var> be the <var title="">form</var>'s <code><a href=#document>Document</a></code>.</li>
Expand All @@ -51426,14 +51426,14 @@ <h5 id=form-submission-algorithm><span class=secno>4.10.22.3 </span>Form submiss

<!-- lock (implicit in previous step) -->

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag is not set,
and the <var title="">submitter</var> element's <a href=#concept-fs-novalidate title=concept-fs-novalidate>no-validate state</a> is false,
then <a href=#interactively-validate-the-constraints>interactively validate the constraints</a> of <var title="">form</var> and examine the result: if the result is
negative (the constraint validation concluded that there were
invalid fields and probably informed the user of this) then abort
these steps.</li>

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag is not set,
then <a href=#fire-a-simple-event>fire a simple event</a> that is cancelable named
<code title=event-submit>submit</code>, at <var title="">form</var>. If the event's default action is prevented
(i.e. if the event is canceled) then abort these steps. Otherwise,
Expand Down
10 changes: 5 additions & 5 deletions index
Expand Up @@ -243,7 +243,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 28 July 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 29 July 2011</h2>
</hgroup><dl><dt><strong>Web developer edition</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -41619,7 +41619,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H

<hr><p>The <dfn id=dom-form-submit title=dom-form-submit><code>submit()</code></dfn>
method, when invoked, must <a href=#concept-form-submit title=concept-form-submit>submit</a> the <code><a href=#the-form-element>form</a></code>
element from the <code><a href=#the-form-element>form</a></code> element itself, with the <var title="">scripted-submit</var> flag set.</p>
element from the <code><a href=#the-form-element>form</a></code> element itself, with the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag set.</p>

<p>The <dfn id=dom-form-reset title=dom-form-reset><code>reset()</code></dfn>
method, when invoked, must run the following steps:</p>
Expand Down Expand Up @@ -51275,7 +51275,7 @@ fur
<h5 id=form-submission-algorithm><span class=secno>4.10.22.3 </span>Form submission algorithm</h5>

<p>When a <code><a href=#the-form-element>form</a></code> element <var title="">form</var> is <dfn id=concept-form-submit title=concept-form-submit>submitted</dfn> from an element <var title="">submitter</var> (typically a button), optionally with a
<var title="">scripted-submit</var> flag set, the user agent must
<var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag set, the user agent must
run the following steps:</p>

<ol><li><p>Let <var title="">form document</var> be the <var title="">form</var>'s <code><a href=#document>Document</a></code>.</li>
Expand All @@ -51298,14 +51298,14 @@ fur

<!-- lock (implicit in previous step) -->

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag is not set,
and the <var title="">submitter</var> element's <a href=#concept-fs-novalidate title=concept-fs-novalidate>no-validate state</a> is false,
then <a href=#interactively-validate-the-constraints>interactively validate the constraints</a> of <var title="">form</var> and examine the result: if the result is
negative (the constraint validation concluded that there were
invalid fields and probably informed the user of this) then abort
these steps.</li>

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title=dom-form-submit><a href=#dom-form-submit>submit()</a></code> method</var> flag is not set,
then <a href=#fire-a-simple-event>fire a simple event</a> that is cancelable named
<code title=event-submit>submit</code>, at <var title="">form</var>. If the event's default action is prevented
(i.e. if the event is canceled) then abort these steps. Otherwise,
Expand Down
8 changes: 4 additions & 4 deletions source
Expand Up @@ -46547,7 +46547,7 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
method, when invoked, must <span
title="concept-form-submit">submit</span> the <code>form</code>
element from the <code>form</code> element itself, with the <var
title="">scripted-submit</var> flag set.</p>
title="">submitted from <code title="dom-form-submit">submit()</code> method</var> flag set.</p>

<p>The <dfn title="dom-form-reset"><code>reset()</code></dfn>
method, when invoked, must run the following steps:</p>
Expand Down Expand Up @@ -57743,7 +57743,7 @@ fur
<p>When a <code>form</code> element <var title="">form</var> is <dfn
title="concept-form-submit">submitted</dfn> from an element <var
title="">submitter</var> (typically a button), optionally with a
<var title="">scripted-submit</var> flag set, the user agent must
<var title="">submitted from <code title="dom-form-submit">submit()</code> method</var> flag set, the user agent must
run the following steps:</p>

<ol>
Expand Down Expand Up @@ -57772,7 +57772,7 @@ fur

<!-- lock (implicit in previous step) -->

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title="dom-form-submit">submit()</code> method</var> flag is not set,
and the <var title="">submitter</var> element's <span
title="concept-fs-novalidate">no-validate state</span> is false,
then <span>interactively validate the constraints</span> of <var
Expand All @@ -57781,7 +57781,7 @@ fur
invalid fields and probably informed the user of this) then abort
these steps.</p></li>

<li><p>If the <var title="">scripted-submit</var> flag is not set,
<li><p>If the <var title="">submitted from <code title="dom-form-submit">submit()</code> method</var> flag is not set,
then <span>fire a simple event</span> that is cancelable named
<code title="event-submit">submit</code>, at <var
title="">form</var>. If the event's default action is prevented
Expand Down

0 comments on commit e16649e

Please sign in to comment.