- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 23 Oct 2009 07:16:34 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv12697
Modified Files:
acknowledgements.html browsers.html comms.html dom.html
editing.html embedded-content-0.html forms.html history.html
index.html infrastructure.html interactive-elements.html
introduction.html microdata.html
named-character-references.html obsolete.html offline.html
references.html semantics.html spec.html syntax.html
tabular-data.html text-level-semantics.html
the-canvas-element.html the-xhtml-syntax.html video.html
Log Message:
Fix an error in the way <meter> and <progress> handle '0.' in the input. (whatwg r4302)
[updated by splitter]
Index: infrastructure.html
===================================================================
RCS file: /sources/public/html5/spec/infrastructure.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- infrastructure.html 23 Oct 2009 07:06:30 -0000 1.610
+++ infrastructure.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="introduction.html">← 1 Introduction</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="dom.html">3 Semantics, structure, and APIs of HTML documents →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>This specification refers to both HTML and XML attributes and IDL
@@ -925,8 +925,6 @@
<li><p>Let <var title="">position</var> be a pointer into <var title="">input</var>, initially pointing at the start of the
string.</p></li>
- <li><p>Let <var title="">value</var> have the value 0.</p></li>
-
<li><p><a href="#skip-whitespace">Skip whitespace</a>.</p></li>
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</p></li>
@@ -944,23 +942,9 @@
trailing garbage which we'll ignore, but it's a number, and we
won't return an error. -->
- <li>
-
- <p><i>Loop</i>: If the character indicated by <var title="">position</var> is one of U+0030 DIGIT ZERO (0) to U+0039
- DIGIT NINE (9):</p>
-
- <ol><li>Multiply <var title="">value</var> by ten.</li>
-
- <li>Add the value of the character indicated by <var title="">position</var> (0..9) to <var title="">value</var>.</li>
-
- <li>Advance <var title="">position</var> to the next
- character.</li>
-
- <li>If <var title="">position</var> is not past the end of <var title="">input</var>, return to the top of the step labeled
- <i>loop</i> in the overall algorithm (that's the step within
- which these substeps find themselves).</li>
-
- </ol></li>
+ <li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> in the range
+ U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and interpret the
+ resulting sequence as a base-ten integer. Let <var title="">value</var> be that integer.</p></li>
<li><p>Return <var title="">value</var>.</p></li>
@@ -989,8 +973,6 @@
<li><p>Let <var title="">position</var> be a pointer into <var title="">input</var>, initially pointing at the start of the
string.</p></li>
- <li><p>Let <var title="">value</var> have the value 0.</p></li>
-
<li><p>Let <var title="">sign</var> have the value
"positive".</p></li>
@@ -1029,23 +1011,9 @@
trailing garbage which we'll ignore, but it's a number, and we
won't return an error. -->
- <li>
-
- <p>If the character indicated by <var title="">position</var> is
- one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9):</p>
-
- <ol><li>Multiply <var title="">value</var> by ten.</li>
-
- <li>Add the value of the character indicated by <var title="">position</var> (0..9) to <var title="">value</var>.</li>
-
- <li>Advance <var title="">position</var> to the next
- character.</li>
-
- <li>If <var title="">position</var> is not past the end of <var title="">input</var>, return to the top of step 9 in the overall
- algorithm (that's the step within which these substeps find
- themselves).</li>
-
- </ol></li>
+ <li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> in the range
+ U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and interpret the
+ resulting sequence as a base-ten integer. Let <var title="">value</var> be that integer.</p></li>
<li><p>If <var title="">sign</var> is "positive", return <var title="">value</var>, otherwise return the result of subtracting
<var title="">value</var> from zero.</p></li>
@@ -1330,10 +1298,9 @@
DIGIT NINE (9), and assign this string of one or more characters to
<var title="">string</var>.</li>
- <li>If the first character of <var title="">string</var> is a
- U+002E FULL STOP character, or if <var title="">string</var>
- contains more than one U+002E FULL STOP character, then return an
- error condition and abort these steps.</li>
+ <li>If the first character or the last character of <var title="">string</var> is a U+002E FULL STOP character, or if <var title="">string</var> contains more than one U+002E FULL STOP
+ character, then return an error condition and abort these
+ steps.</li>
<li>Parse <var title="">string</var> according to the <a href="#rules-for-parsing-floating-point-number-values">rules
for parsing floating point number values</a>, to obtain <var title="">number</var>. This step cannot fail (<var title="">string</var> is guaranteed to be a <a href="#valid-floating-point-number">valid floating
Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec/text-level-semantics.html,v
retrieving revision 1.603
retrieving revision 1.604
diff -u -d -r1.603 -r1.604
--- text-level-semantics.html 23 Oct 2009 07:06:31 -0000 1.603
+++ text-level-semantics.html 23 Oct 2009 07:16:31 -0000 1.604
@@ -224,7 +224,7 @@
<a href="semantics.html">← 4 The elements of HTML</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="video.html">4.8.7 The video element →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="text-level-semantics"><span class="secno">4.6 </span>Text-level semantics</h3><h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn><code>a</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -1613,21 +1613,21 @@
and the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute are
both specified. (The contents of the element are ignored.)</li>
- </ul><p>For the purposes of these requirements, a number is a sequence of
+ </ul><!-- next three paragraphs are also in the <meter> section --><p>For the purposes of these requirements, a number is a sequence of
characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
(9), optionally including a single U+002E FULL STOP character (.) in
- some position after the first digit, interpreted as a base ten
- number. Numbers must be separated from other numbers by at least one
- character that isn't any of the aforementioned. In addition, if the
- element is required to contain numbers, then the contents of the
- element must not contain any U+002E FULL STOP characters (.) that
- aren't part of numbers.</p><p>A number if said to be followed by a <a href="infrastructure.html#valid-denominator-punctuation-character" title="valid
+ some position after the first digit and before the last digit,
+ interpreted as a base ten number. Numbers must be separated from
+ other numbers by at least one character that isn't any of the
+ aforementioned. In addition, if the element is required to contain
+ numbers, then the contents of the element must not contain any
+ U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href="infrastructure.html#valid-denominator-punctuation-character" title="valid
denominator punctuation character">denominator punctuation
character</a> if it is followed by zero or more
<a href="infrastructure.html#white_space">White_Space</a> characters and a <a href="infrastructure.html#valid-denominator-punctuation-character">valid denominator
punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
the <a href="infrastructure.html#text-node" title="text node">text nodes</a> of all the descendants
- of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><p>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attributes, when present, must
+ of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><!-- previous three paragraphs are also in the <meter> section --><p>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attributes, when present, must
have values that are <a href="infrastructure.html#valid-floating-point-number" title="valid floating point number">valid
floating point numbers</a>. The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute, if present, must
have a value equal to or greater than zero, and less than or equal
@@ -1888,21 +1888,21 @@
</dd>
- </dl><p>For the purposes of these requirements, a number is a sequence of
+ </dl><!-- next three paragraphs are also in the <progress> section --><p>For the purposes of these requirements, a number is a sequence of
characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
(9), optionally including a single U+002E FULL STOP character (.) in
- some position after the first digit, interpreted as a base ten
- number. Numbers must be separated from other numbers by at least one
- character that isn't any of the aforementioned. In addition, if the
- element is required to contain numbers, then the contents of the
- element must not contain any U+002E FULL STOP characters (.) that
- aren't part of numbers.</p><p>A number if said to be followed by a <a href="infrastructure.html#valid-denominator-punctuation-character" title="valid
+ some position after the first digit and before the last digit,
+ interpreted as a base ten number. Numbers must be separated from
+ other numbers by at least one character that isn't any of the
+ aforementioned. In addition, if the element is required to contain
+ numbers, then the contents of the element must not contain any
+ U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href="infrastructure.html#valid-denominator-punctuation-character" title="valid
denominator punctuation character">denominator punctuation
character</a> if it is followed by zero or more
<a href="infrastructure.html#white_space">White_Space</a> characters and a <a href="infrastructure.html#valid-denominator-punctuation-character">valid denominator
punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
the <a href="infrastructure.html#text-node" title="text node">text nodes</a> of all the descendants
- of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><p>The <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>, <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes, when present,
+ of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><!-- previous three paragraphs are also in the <progress> section --><p>The <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>, <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes, when present,
must have values that are <a href="infrastructure.html#valid-floating-point-number" title="valid floating point
number">valid floating point numbers</a>.</p><p class="note">If no minimum or maximum is specified, then the
range is assumed to be 0..1, and the value thus has to be within
Index: the-canvas-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-canvas-element.html,v
retrieving revision 1.472
retrieving revision 1.473
diff -u -d -r1.472 -r1.473
--- the-canvas-element.html 23 Oct 2009 07:06:31 -0000 1.472
+++ the-canvas-element.html 23 Oct 2009 07:16:31 -0000 1.473
@@ -224,7 +224,7 @@
<a href="video.html">← 4.8.7 The video element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="tabular-data.html">4.9 Tabular data →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h4 id="the-canvas-element"><span class="secno">4.8.11 </span>The <dfn id="canvas"><code>canvas</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/74">ISSUE-74</a> (canvas-accessibility) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec/tabular-data.html,v
retrieving revision 1.604
retrieving revision 1.605
diff -u -d -r1.604 -r1.605
--- tabular-data.html 23 Oct 2009 07:06:31 -0000 1.604
+++ tabular-data.html 23 Oct 2009 07:16:31 -0000 1.605
@@ -224,7 +224,7 @@
<a href="the-canvas-element.html">← 4.8.11 The canvas element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="forms.html">4.10 Forms →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/32">ISSUE-32</a> (table-summary) blocks progress to Last Call</span></p><h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn><code>table</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
Index: microdata.html
===================================================================
RCS file: /sources/public/html5/spec/microdata.html,v
retrieving revision 1.564
retrieving revision 1.565
diff -u -d -r1.564 -r1.565
--- microdata.html 23 Oct 2009 07:06:30 -0000 1.564
+++ microdata.html 23 Oct 2009 07:16:31 -0000 1.565
@@ -224,7 +224,7 @@
<a href="interactive-elements.html">← 4.11 Interactive elements</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="browsers.html">6 Web browsers →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="microdata"><span class="secno">5 </span><dfn>Microdata</dfn></h2><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/76">ISSUE-76</a> (Microdata/RDFa) blocks progress to Last Call</span></p><!-- v2
Index: embedded-content-0.html
===================================================================
RCS file: /sources/public/html5/spec/embedded-content-0.html,v
retrieving revision 1.600
retrieving revision 1.601
diff -u -d -r1.600 -r1.601
--- embedded-content-0.html 23 Oct 2009 07:06:30 -0000 1.600
+++ embedded-content-0.html 23 Oct 2009 07:16:30 -0000 1.601
@@ -224,7 +224,7 @@
<a href="dom.html">← 3 Semantics, structure, and APIs of HTML documents</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="semantics.html">4 The elements of HTML →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6><p><dfn id="embedded-content">Embedded content</dfn> is content that imports another
Index: dom.html
===================================================================
RCS file: /sources/public/html5/spec/dom.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- dom.html 23 Oct 2009 07:06:30 -0000 1.610
+++ dom.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="infrastructure.html">← 2 Common infrastructure</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="embedded-content-0.html">3.2.5.1.6 Embedded content →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="dom"><span class="secno">3 </span>Semantics, structure, and APIs of HTML documents</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="documents"><span class="secno">3.1 </span>Documents</h3><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><p>Every XML and HTML document in an HTML UA is represented by a
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- acknowledgements.html 23 Oct 2009 07:06:30 -0000 1.610
+++ acknowledgements.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -222,7 +222,7 @@
</div><nav>
<a href="references.html">← References</a> –
<a href="spec.html#contents">Table of contents</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 class="no-num" id="acknowledgements">Acknowledgements</h2><p class="XXX annotation"><b>Status: </b><i>Being edited right now</i></p><!-- ACKS --><p>Thanks to
Index: history.html
===================================================================
RCS file: /sources/public/html5/spec/history.html,v
retrieving revision 1.604
retrieving revision 1.605
diff -u -d -r1.604 -r1.605
--- history.html 23 Oct 2009 07:06:30 -0000 1.604
+++ history.html 23 Oct 2009 07:16:30 -0000 1.605
@@ -224,7 +224,7 @@
<a href="offline.html">← 6.9 Offline Web applications</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="editing.html">7 User Interaction →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="history"><span class="secno">6.10 </span>Session history and navigation</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h4 id="the-session-history-of-browsing-contexts"><span class="secno">6.10.1 </span>The session history of browsing contexts</h4><p>The sequence of <code>Document</code>s in a <a href="browsers.html#browsing-context">browsing
Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.604
retrieving revision 1.605
diff -u -d -r1.604 -r1.605
--- forms.html 23 Oct 2009 07:06:30 -0000 1.604
+++ forms.html 23 Oct 2009 07:16:30 -0000 1.605
@@ -224,7 +224,7 @@
<a href="tabular-data.html">← 4.9 Tabular data</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="interactive-elements.html">4.11 Interactive elements →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="forms"><span class="secno">4.10 </span>Forms</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>Forms allow unscripted client-server interaction: given a form, a
Index: interactive-elements.html
===================================================================
RCS file: /sources/public/html5/spec/interactive-elements.html,v
retrieving revision 1.604
retrieving revision 1.605
diff -u -d -r1.604 -r1.605
--- interactive-elements.html 23 Oct 2009 07:06:30 -0000 1.604
+++ interactive-elements.html 23 Oct 2009 07:16:30 -0000 1.605
@@ -224,7 +224,7 @@
<a href="forms.html">← 4.10 Forms</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="microdata.html">5 Microdata →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
Index: editing.html
===================================================================
RCS file: /sources/public/html5/spec/editing.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- editing.html 23 Oct 2009 07:06:30 -0000 1.610
+++ editing.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="history.html">← 6.10 Session history and navigation</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="comms.html">8 Communication →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="editing"><span class="secno">7 </span><dfn>User Interaction</dfn></h2><p>This section describes various features that allow authors to
Index: video.html
===================================================================
RCS file: /sources/public/html5/spec/video.html,v
retrieving revision 1.479
retrieving revision 1.480
diff -u -d -r1.479 -r1.480
--- video.html 23 Oct 2009 07:06:31 -0000 1.479
+++ video.html 23 Oct 2009 07:16:32 -0000 1.480
@@ -224,7 +224,7 @@
<a href="text-level-semantics.html">← 4.6 Text-level semantics</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-canvas-element.html">4.8.11 The canvas element →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs), <a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization) and <a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
Index: browsers.html
===================================================================
RCS file: /sources/public/html5/spec/browsers.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- browsers.html 23 Oct 2009 07:06:30 -0000 1.610
+++ browsers.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="microdata.html">← 5 Microdata</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="offline.html">6.9 Offline Web applications →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="browsers"><span class="secno">6 </span>Web browsers</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><div class="impl">
Index: the-xhtml-syntax.html
===================================================================
RCS file: /sources/public/html5/spec/the-xhtml-syntax.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- the-xhtml-syntax.html 23 Oct 2009 07:06:31 -0000 1.610
+++ the-xhtml-syntax.html 23 Oct 2009 07:16:32 -0000 1.611
@@ -224,7 +224,7 @@
<a href="named-character-references.html">← 9.6 Named character references</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="obsolete.html">12 Obsolete features →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="the-xhtml-syntax"><span class="secno">10 </span><dfn id="xhtml">The XHTML syntax</dfn></h2><p class="note">This section only describes the rules for XML
Index: offline.html
===================================================================
RCS file: /sources/public/html5/spec/offline.html,v
retrieving revision 1.605
retrieving revision 1.606
diff -u -d -r1.605 -r1.606
--- offline.html 23 Oct 2009 07:06:31 -0000 1.605
+++ offline.html 23 Oct 2009 07:16:31 -0000 1.606
@@ -224,7 +224,7 @@
<a href="browsers.html">← 6 Web browsers</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="history.html">6.10 Session history and navigation →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="offline"><span class="secno">6.9 </span>Offline Web applications</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><!-- v2 ideas for appcache:
Index: obsolete.html
===================================================================
RCS file: /sources/public/html5/spec/obsolete.html,v
retrieving revision 1.602
retrieving revision 1.603
diff -u -d -r1.602 -r1.603
--- obsolete.html 23 Oct 2009 07:06:31 -0000 1.602
+++ obsolete.html 23 Oct 2009 07:16:31 -0000 1.603
@@ -224,7 +224,7 @@
<a href="the-xhtml-syntax.html">← 10 The XHTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="iana.html">13 IANA considerations →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="obsolete"><span class="secno">12 </span>Obsolete features</h2><h3 id="obsolete-but-conforming-features"><span class="secno">12.1 </span>Obsolete but conforming features</h3><p>Features listed in this section will trigger warnings in
Index: named-character-references.html
===================================================================
RCS file: /sources/public/html5/spec/named-character-references.html,v
retrieving revision 1.603
retrieving revision 1.604
diff -u -d -r1.603 -r1.604
--- named-character-references.html 23 Oct 2009 07:06:30 -0000 1.603
+++ named-character-references.html 23 Oct 2009 07:16:31 -0000 1.604
@@ -224,7 +224,7 @@
<a href="syntax.html">← 9 The HTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-xhtml-syntax.html">10 The XHTML syntax →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h3 id="named-character-references"><span class="secno">9.6 </span><dfn>Named character references</dfn></h3><p>This table lists the character reference names that are supported
Index: references.html
===================================================================
RCS file: /sources/public/html5/spec/references.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- references.html 23 Oct 2009 07:06:31 -0000 1.610
+++ references.html 23 Oct 2009 07:16:31 -0000 1.611
@@ -224,7 +224,7 @@
<a href="index.html">← Index</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="acknowledgements.html">Acknowledgements →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 class="no-num" id="references">References</h2><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><!--REFS--><!--END vCard--><!--END vEvent--><p>All references are normative unless marked "Non-normative".</p><!--START vCard--><!--START vEvent--><dl><dt id="refsABNF">[ABNF]</dt>
Index: semantics.html
===================================================================
RCS file: /sources/public/html5/spec/semantics.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- semantics.html 23 Oct 2009 07:06:31 -0000 1.610
+++ semantics.html 23 Oct 2009 07:16:31 -0000 1.611
@@ -224,7 +224,7 @@
<a href="embedded-content-0.html">← 3.2.5.1.6 Embedded content</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="text-level-semantics.html">4.6 Text-level semantics →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2><h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><h4 id="the-html-element-0"><span class="secno">4.1.1 </span>The <dfn><code>html</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
Index: index.html
===================================================================
RCS file: /sources/public/html5/spec/index.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- index.html 23 Oct 2009 07:06:30 -0000 1.610
+++ index.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="iana.html">← 13 IANA considerations</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="references.html">References →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 class="no-num" id="index">Index</h2><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><div class="impl">
Index: comms.html
===================================================================
RCS file: /sources/public/html5/spec/comms.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- comms.html 23 Oct 2009 07:06:30 -0000 1.610
+++ comms.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -224,7 +224,7 @@
<a href="editing.html">← 7 User Interaction</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="syntax.html">9 The HTML syntax →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="comms"><span class="secno">8 </span>Communication</h2><h3 id="event-definitions"><span class="secno">8.1 </span>Event definitions</h3><p>Messages in <span>server-sent events</span>, <span>Web
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.612
retrieving revision 1.613
diff -u -d -r1.612 -r1.613
--- spec.html 23 Oct 2009 07:06:31 -0000 1.612
+++ spec.html 23 Oct 2009 07:16:31 -0000 1.613
@@ -242,7 +242,7 @@
</dl><p>This specification is available in the following formats:
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>.
-This is revision 1.3436.
+This is revision 1.3438.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2009 <a href="http://www.w3.org/"><abbr title="World Wide
Index: introduction.html
===================================================================
RCS file: /sources/public/html5/spec/introduction.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- introduction.html 23 Oct 2009 07:06:30 -0000 1.610
+++ introduction.html 23 Oct 2009 07:16:30 -0000 1.611
@@ -222,7 +222,7 @@
</div><nav>
<a href="spec.html#contents">Table of contents</a> –
<a href="infrastructure.html">2 Common infrastructure →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="introduction"><span class="secno">1 </span>Introduction</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="background"><span class="secno">1.1 </span>Background</h3><p><i>This section is non-normative.</i></p><p>The World Wide Web's markup language has always been HTML. HTML
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/spec/syntax.html,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -d -r1.610 -r1.611
--- syntax.html 23 Oct 2009 07:06:31 -0000 1.610
+++ syntax.html 23 Oct 2009 07:16:31 -0000 1.611
@@ -224,7 +224,7 @@
<a href="comms.html">← 8 Communication</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="named-character-references.html">9.6 Named character references →</a>
- </nav><p>This is revision 1.3436.</p>
+ </nav><p>This is revision 1.3438.</p>
<h2 id="syntax"><span class="secno">9 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for
Received on Friday, 23 October 2009 07:16:39 UTC