[html5] r3957 - [ow] (2) Make the implicit submission mechanism validate the form. Fixing http:/ [...]
whatwg at whatwg.org
whatwg at whatwg.org
Tue Sep 22 02:35:11 PDT 2009
Author: ianh
Date: 2009-09-22 02:35:11 -0700 (Tue, 22 Sep 2009)
New Revision: 3957
Modified:
index
source
Log:
[ow] (2) Make the implicit submission mechanism validate the form.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=7511
Modified: index
===================================================================
--- index 2009-09-22 09:09:33 UTC (rev 3956)
+++ index 2009-09-22 09:35:11 UTC (rev 3957)
@@ -30569,7 +30569,7 @@
<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.</p>
+ element from the <code><a href=#the-form-element>form</a></code> element itself, with the <var title="">scripted-submit</var> flag set.</p>
<p>The <dfn id=dom-form-reset title=dom-form-reset><code>reset()</code></dfn>
method, when invoked, must <a href=#concept-form-reset title=concept-form-reset>reset</a> the <code><a href=#the-form-element>form</a></code>
@@ -38454,7 +38454,8 @@
<h5 id=form-submission-algorithm><span class=secno>4.10.17.3 </span>Form submission algorithm</h5>
- <p>When a form <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), the user agent must
+ <p>When a form <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
run the following steps:</p>
<ol><li id=sandboxSubmitBlocked><p>If <var title="">form</var> is in
@@ -38471,22 +38472,19 @@
<!-- lock (implicit in previous step) -->
- <li><p>If the <var title="">submitter</var> is anything but a
- <code><a href=#the-form-element>form</a></code> element, 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,
+ 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="">submitter</var> is anything but a
- <code><a href=#the-form-element>form</a></code> element, then <a href=#fire-a-simple-event>fire a simple event</a>
- that is cancelable called <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, continue (effectively the default action is to
- perform the submission).</li>
+ <li><p>If the <var title="">scripted-submit</var> flag is not set,
+ then <a href=#fire-a-simple-event>fire a simple event</a> that is cancelable called
+ <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,
+ continue (effectively the default action is to perform the
+ submission).</li>
<!-- if you add any steps between the "lock" and "unlock" lines,
make sure to update the step immediately before the "lock" line -->
Modified: source
===================================================================
--- source 2009-09-22 09:09:33 UTC (rev 3956)
+++ source 2009-09-22 09:35:11 UTC (rev 3957)
@@ -33914,7 +33914,8 @@
<p>The <dfn title="dom-form-submit"><code>submit()</code></dfn>
method, when invoked, must <span
title="concept-form-submit">submit</span> the <code>form</code>
- element from the <code>form</code> element itself.</p>
+ element from the <code>form</code> element itself, with the <var
+ title="">scripted-submit</var> flag set.</p>
<p>The <dfn title="dom-form-reset"><code>reset()</code></dfn>
method, when invoked, must <span
@@ -43053,7 +43054,8 @@
<p>When a form <var title="">form</var> is <dfn
title="concept-form-submit">submitted</dfn> from an element <var
- title="">submitter</var> (typically a button), the user agent must
+ title="">submitter</var> (typically a button), optionally with a
+ <var title="">scripted-submit</var> flag set, the user agent must
run the following steps:</p>
<ol>
@@ -43075,22 +43077,22 @@
<!-- lock (implicit in previous step) -->
- <li><p>If the <var title="">submitter</var> is anything but a
- <code>form</code> element, 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 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.</p></li>
+ <li><p>If the <var title="">scripted-submit</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
+ 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.</p></li>
- <li><p>If the <var title="">submitter</var> is anything but a
- <code>form</code> element, then <span>fire a simple event</span>
- that is cancelable called <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, continue (effectively the default action is to
- perform the submission).</p></li>
+ <li><p>If the <var title="">scripted-submit</var> flag is not set,
+ then <span>fire a simple event</span> that is cancelable called
+ <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,
+ continue (effectively the default action is to perform the
+ submission).</p></li>
<!-- if you add any steps between the "lock" and "unlock" lines,
make sure to update the step immediately before the "lock" line -->
More information about the Commit-Watchers
mailing list