- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 08 Sep 2008 23:49:53 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv29526
Modified Files:
Overview.html
Log Message:
WF2: The beginnings of processing models... (whatwg r2160)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1332
retrieving revision 1.1333
diff -u -d -r1.1332 -r1.1333
--- Overview.html 7 Sep 2008 21:24:16 -0000 1.1332
+++ Overview.html 8 Sep 2008 23:49:50 -0000 1.1333
@@ -27,7 +27,7 @@
for HTML and XHTML</h2>
<h2 class="no-num no-toc" id=editors0><!-- "W3C Working Draft" -->
- Editor's Draft <!--ZZZ--> 7 September 2008</h2>
+ Editor's Draft <!--ZZZ--> 8 September 2008</h2>
<dl><!-- ZZZ: update the month/day
<dt>This Version:</dt>
@@ -199,7 +199,7 @@
<p>The W3C <a href="http://www.w3.org/html/wg/">HTML Working Group</a> is
the W3C working group responsible for this specification's progress along
- the W3C Recommendation track. <!--ZZZ:--> This specification is the 7
+ the W3C Recommendation track. <!--ZZZ:--> This specification is the 8
September 2008 <!--ZZZ "Working Draft"-->Editor's Draft. <!--:ZZZ--></p>
<!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST -->
<!-- relationship to other work (required) -->
@@ -1068,9 +1068,12 @@
of controls and forms</a>
<li><a href="#processing1"><span class=secno>4.9.13 </span>Processing
- model</a>
+ models</a>
<ul class=toc>
- <li><a href="#form-submission"><span class=secno>4.9.13.1.
+ <li><a href="#constraint"><span class=secno>4.9.13.1.
+ </span>Constraint checking</a>
+
+ <li><a href="#form-submission"><span class=secno>4.9.13.2.
</span>Form submission</a>
</ul>
</ul>
@@ -27325,21 +27328,30 @@
getting, must return the element's <a href="#form-owner">form owner</a>,
or null if there isn't one.
- <h4 id=processing1><span class=secno>4.9.13 </span>Processing model</h4>
+ <h4 id=processing1><span class=secno>4.9.13 </span>Processing models</h4>
- <p class=big-issue>See <a
- href="http://www.whatwg.org/specs/web-forms/current-work/#extend-form-controls">WF2</a>
- for now
+ <h5 id=constraint><span class=secno>4.9.13.1. </span>Constraint checking</h5>
- <h5 id=form-submission><span class=secno>4.9.13.1. </span>Form submission</h5>
+ <p class=big-issue>...
- <p class=big-issue>See <a
- href="http://www.whatwg.org/specs/web-forms/current-work/#form-submission">WF2</a>
- for now
+ <h5 id=form-submission><span class=secno>4.9.13.2. </span>Form submission</h5>
- <p class=big-issue id=sandboxSubmitBlocked>If a form is in a browsing
- context whose <a href="#sandboxed3">sandboxed forms browsing context
- flag</a> is set, it must not be submitted.
+ <p>When a form <var title="">form</var> is <dfn id=submitted
+ title=concept-form-submit>submitted</dfn> from an element <var
+ title="">submitter</var> (typically a button), the user agent must run the
+ following steps:
+
+ <ol>
+ <li id=sandboxSubmitBlocked>
+ <p>If <var title="">form</var> is in a <code>Document</code> that has no
+ associated <a href="#browsing1">browsing context</a> or whose <a
+ href="#browsing1">browsing context</a> has its <a
+ href="#sandboxed3">sandboxed forms browsing context flag</a> set, then
+ abort these steps without doing anything.
+
+ <li>
+ <p class=big-issue>...
+ </ol>
<h3 id=scripting1><span class=secno>4.10 </span>Scripting</h3>
Received on Monday, 8 September 2008 23:50:26 UTC