[html5] r4298 - [e] (0) Make a bunch of parsing terminology more consistent. Fixing http://www.w [...]
whatwg at whatwg.org
whatwg at whatwg.org
Thu Oct 22 23:53:29 PDT 2009
Author: ianh
Date: 2009-10-22 23:53:25 -0700 (Thu, 22 Oct 2009)
New Revision: 4298
Modified:
complete.html
index
source
Log:
[e] (0) Make a bunch of parsing terminology more consistent.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=8009
Modified: complete.html
===================================================================
--- complete.html 2009-10-23 06:35:27 UTC (rev 4297)
+++ complete.html 2009-10-23 06:53:25 UTC (rev 4298)
@@ -2759,15 +2759,14 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character. (The
- "<code title="">+</code>" is ignored, but it is not
- conforming.)</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var title="">position</var> to the next character. (The "<code title="">+</code>" is ignored, but it is not conforming.)</li>
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -2775,12 +2774,12 @@
<li>
- <p><i>Loop</i>: If the next character is one of U+0030 DIGIT ZERO
- (0) to U+0039 DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var title="">value</var>.</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>
@@ -2859,8 +2858,9 @@
</ol></li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -2868,12 +2868,12 @@
<li>
- <p>If the next character is one of U+0030 DIGIT ZERO (0) to U+0039
- DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var title="">value</var>.</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>
@@ -3008,9 +3008,8 @@
<li><p><i>Fraction loop</i>: Multiply <var title="">divisor</var>
by ten.</li>
- <li>Add the value of the current character interpreted as a
- base-ten digit (0..9) divided by <var title="">divisor</var>, to
- <var title="">value</var>.</li>
+ <li>Add the value of the character indicated by <var title="">position</var>, interpreted as a base-ten digit (0..9)
+ and divided by <var title="">divisor</var>, to <var title="">value</var>.</li>
<li><p>Advance <var title="">position</var> to the next
character.</li>
@@ -3234,16 +3233,17 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var title="">position</var> to the next character.</li>
<li><p><a href=#collect-a-sequence-of-characters>Collect a sequence of characters</a> that are
U+0030 DIGIT ZERO (0) characters, and discard them.</li>
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is not one of U+0031 DIGIT ONE (1)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -3258,14 +3258,15 @@
<li>
- <p>If the next character is a U+002E FULL STOP character (.):</p>
+ <p>If the character indicated by <var title="">position</var> is a
+ U+002E FULL STOP character (.):</p>
<ol><li><p>Advance <var title="">position</var> to the next
character.</li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return <var title="">value</var>
- as an integer.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9),
+ then return <var title="">value</var> as an integer.</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). Let <var title="">length</var> be the number of characters collected. Let
@@ -3280,8 +3281,8 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return <var title="">value</var> as a
length.</li>
- <li><p>If the next character is a U+0025 PERCENT SIGN character
- (%), return <var title="">value</var> as a percentage.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+0025 PERCENT SIGN character (%), return <var title="">value</var> as a percentage.</li>
<li><p>Return <var title="">value</var> as a length.</li>
@@ -4705,7 +4706,7 @@
<ol><li><p>Append the character at <var title="">position</var> to
the end of <var title="">output</var>.</li>
- <li><p>Increment <var title="">position</var> so it points at the
+ <li><p>Advance <var title="">position</var> so it points at the
next character in <var title="">input</var>.</li>
<li><p>Return to step 5 in the overall set of steps.</li>
@@ -72156,8 +72157,8 @@
the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current
- character in the <a href=#before-doctype-name-state>before DOCTYPE name state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-name-state>before DOCTYPE name state</a>.</dd>
</dl><h5 id=before-doctype-name-state><span class=secno>11.2.4.53 </span><dfn>Before DOCTYPE name state</dfn></h5>
@@ -72280,8 +72281,8 @@
Reconsume the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current character in
- the <a href=#before-doctype-public-identifier-state>before DOCTYPE public identifier state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-public-identifier-state>before DOCTYPE public identifier state</a>.</dd>
</dl><h5 id=before-doctype-public-identifier-state><span class=secno>11.2.4.57 </span><dfn>Before DOCTYPE public identifier state</dfn></h5>
@@ -72453,8 +72454,8 @@
Reconsume the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current character in
- the <a href=#before-doctype-system-identifier-state>before DOCTYPE system identifier state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-system-identifier-state>before DOCTYPE system identifier state</a>.</dd>
</dl><h5 id=before-doctype-system-identifier-state><span class=secno>11.2.4.63 </span><dfn>Before DOCTYPE system identifier state</dfn></h5>
Modified: index
===================================================================
--- index 2009-10-23 06:35:27 UTC (rev 4297)
+++ index 2009-10-23 06:53:25 UTC (rev 4298)
@@ -2569,15 +2569,14 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character. (The
- "<code title="">+</code>" is ignored, but it is not
- conforming.)</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var title="">position</var> to the next character. (The "<code title="">+</code>" is ignored, but it is not conforming.)</li>
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -2585,12 +2584,12 @@
<li>
- <p><i>Loop</i>: If the next character is one of U+0030 DIGIT ZERO
- (0) to U+0039 DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var title="">value</var>.</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>
@@ -2669,8 +2668,9 @@
</ol></li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -2678,12 +2678,12 @@
<li>
- <p>If the next character is one of U+0030 DIGIT ZERO (0) to U+0039
- DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var title="">value</var>.</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>
@@ -2818,9 +2818,8 @@
<li><p><i>Fraction loop</i>: Multiply <var title="">divisor</var>
by ten.</li>
- <li>Add the value of the current character interpreted as a
- base-ten digit (0..9) divided by <var title="">divisor</var>, to
- <var title="">value</var>.</li>
+ <li>Add the value of the character indicated by <var title="">position</var>, interpreted as a base-ten digit (0..9)
+ and divided by <var title="">divisor</var>, to <var title="">value</var>.</li>
<li><p>Advance <var title="">position</var> to the next
character.</li>
@@ -3044,16 +3043,17 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var title="">position</var> to the next character.</li>
<li><p><a href=#collect-a-sequence-of-characters>Collect a sequence of characters</a> that are
U+0030 DIGIT ZERO (0) characters, and discard them.</li>
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li>
- <li><p>If the next character is not one of U+0031 DIGIT ONE (1)
- to U+0039 DIGIT NINE (9), then return an error.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE (9), then
+ return an error.</li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -3068,14 +3068,15 @@
<li>
- <p>If the next character is a U+002E FULL STOP character (.):</p>
+ <p>If the character indicated by <var title="">position</var> is a
+ U+002E FULL STOP character (.):</p>
<ol><li><p>Advance <var title="">position</var> to the next
character.</li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return <var title="">value</var>
- as an integer.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9),
+ then return <var title="">value</var> as an integer.</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). Let <var title="">length</var> be the number of characters collected. Let
@@ -3090,8 +3091,8 @@
<li><p>If <var title="">position</var> is past the end of <var title="">input</var>, return <var title="">value</var> as a
length.</li>
- <li><p>If the next character is a U+0025 PERCENT SIGN character
- (%), return <var title="">value</var> as a percentage.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+0025 PERCENT SIGN character (%), return <var title="">value</var> as a percentage.</li>
<li><p>Return <var title="">value</var> as a length.</li>
@@ -4515,7 +4516,7 @@
<ol><li><p>Append the character at <var title="">position</var> to
the end of <var title="">output</var>.</li>
- <li><p>Increment <var title="">position</var> so it points at the
+ <li><p>Advance <var title="">position</var> so it points at the
next character in <var title="">input</var>.</li>
<li><p>Return to step 5 in the overall set of steps.</li>
@@ -63128,8 +63129,8 @@
the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current
- character in the <a href=#before-doctype-name-state>before DOCTYPE name state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-name-state>before DOCTYPE name state</a>.</dd>
</dl><h5 id=before-doctype-name-state><span class=secno>9.2.4.53 </span><dfn>Before DOCTYPE name state</dfn></h5>
@@ -63252,8 +63253,8 @@
Reconsume the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current character in
- the <a href=#before-doctype-public-identifier-state>before DOCTYPE public identifier state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-public-identifier-state>before DOCTYPE public identifier state</a>.</dd>
</dl><h5 id=before-doctype-public-identifier-state><span class=secno>9.2.4.57 </span><dfn>Before DOCTYPE public identifier state</dfn></h5>
@@ -63425,8 +63426,8 @@
Reconsume the EOF character in the <a href=#data-state>data state</a>.</dd>
<dt>Anything else</dt>
- <dd><a href=#parse-error>Parse error</a>. Reconsume the current character in
- the <a href=#before-doctype-system-identifier-state>before DOCTYPE system identifier state</a>.</dd>
+ <dd><a href=#parse-error>Parse error</a>. Reconsume the character in the
+ <a href=#before-doctype-system-identifier-state>before DOCTYPE system identifier state</a>.</dd>
</dl><h5 id=before-doctype-system-identifier-state><span class=secno>9.2.4.63 </span><dfn>Before DOCTYPE system identifier state</dfn></h5>
Modified: source
===================================================================
--- source 2009-10-23 06:35:27 UTC (rev 4297)
+++ source 2009-10-23 06:53:25 UTC (rev 4298)
@@ -1635,16 +1635,17 @@
<li><p>If <var title="">position</var> is past the end of <var
title="">input</var>, return an error.</p></li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character. (The
- "<code title="">+</code>" is ignored, but it is not
- conforming.)</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var
+ title="">position</var> to the next character. (The "<code
+ title="">+</code>" is ignored, but it is not conforming.)</li>
<li><p>If <var title="">position</var> is past the end of <var
title="">input</var>, return an error.</p></li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</p></li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</p></li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -1652,15 +1653,16 @@
<li>
- <p><i>Loop</i>: If the next character is one of U+0030 DIGIT ZERO
- (0) to U+0039 DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var
- title="">value</var>.</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>
@@ -1759,8 +1761,9 @@
</li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return an error.</p></li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then
+ return an error.</p></li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -1768,15 +1771,15 @@
<li>
- <p>If the next character is one of U+0030 DIGIT ZERO (0) to U+0039
- DIGIT NINE (9):</p>
+ <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 current character (0..9) to <var
- title="">value</var>.</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>
@@ -1945,9 +1948,10 @@
<li><p><i>Fraction loop</i>: Multiply <var title="">divisor</var>
by ten.</p></li>
- <li>Add the value of the current character interpreted as a
- base-ten digit (0..9) divided by <var title="">divisor</var>, to
- <var title="">value</var>.</li>
+ <li>Add the value of the character indicated by <var
+ title="">position</var>, interpreted as a base-ten digit (0..9)
+ and divided by <var title="">divisor</var>, to <var
+ title="">value</var>.</li>
<li><p>Advance <var title="">position</var> to the next
character.</p></li>
@@ -2232,8 +2236,9 @@
<li><p>If <var title="">position</var> is past the end of <var
title="">input</var>, return an error.</p></li>
- <li><p>If the next character is a U+002B PLUS SIGN character (+),
- advance <var title="">position</var> to the next character.</li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+002B PLUS SIGN character (+), advance <var
+ title="">position</var> to the next character.</li>
<li><p><span>Collect a sequence of characters</span> that are
U+0030 DIGIT ZERO (0) characters, and discard them.</p></li>
@@ -2241,8 +2246,9 @@
<li><p>If <var title="">position</var> is past the end of <var
title="">input</var>, return an error.</p></li>
- <li><p>If the next character is not one of U+0031 DIGIT ONE (1)
- to U+0039 DIGIT NINE (9), then return an error.</p></li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE (9), then
+ return an error.</p></li>
<!-- Ok. At this point we know we have a number. It might have
trailing garbage which we'll ignore, but it's a number, and we
@@ -2259,16 +2265,17 @@
<li>
- <p>If the next character is a U+002E FULL STOP character (.):</p>
+ <p>If the character indicated by <var title="">position</var> is a
+ U+002E FULL STOP character (.):</p>
<ol>
<li><p>Advance <var title="">position</var> to the next
character.</p></li>
- <li><p>If the next character is not one of U+0030 DIGIT ZERO (0)
- to U+0039 DIGIT NINE (9), then return <var title="">value</var>
- as an integer.</p></li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9),
+ then return <var title="">value</var> as an integer.</p></li>
<li><p><span>Collect a sequence of characters</span> in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9). Let <var
@@ -2289,8 +2296,9 @@
title="">input</var>, return <var title="">value</var> as a
length.</p></li>
- <li><p>If the next character is a U+0025 PERCENT SIGN character
- (%), return <var title="">value</var> as a percentage.</p></li>
+ <li><p>If the character indicated by <var title="">position</var>
+ is a U+0025 PERCENT SIGN character (%), return <var
+ title="">value</var> as a percentage.</p></li>
<li><p>Return <var title="">value</var> as a length.</p></li>
@@ -4090,7 +4098,7 @@
<li><p>Append the character at <var title="">position</var> to
the end of <var title="">output</var>.</p></li>
- <li><p>Increment <var title="">position</var> so it points at the
+ <li><p>Advance <var title="">position</var> so it points at the
next character in <var title="">input</var>.</p></li>
<li><p>Return to step 5 in the overall set of steps.</p></li>
@@ -81291,8 +81299,8 @@
the EOF character in the <span>data state</span>.</dd>
<dt>Anything else</dt>
- <dd><span>Parse error</span>. Reconsume the current
- character in the <span>before DOCTYPE name state</span>.</dd>
+ <dd><span>Parse error</span>. Reconsume the character in the
+ <span>before DOCTYPE name state</span>.</dd>
</dl>
@@ -81435,8 +81443,8 @@
Reconsume the EOF character in the <span>data state</span>.</dd>
<dt>Anything else</dt>
- <dd><span>Parse error</span>. Reconsume the current character in
- the <span>before DOCTYPE public identifier state</span>.</dd>
+ <dd><span>Parse error</span>. Reconsume the character in the
+ <span>before DOCTYPE public identifier state</span>.</dd>
</dl>
@@ -81638,8 +81646,8 @@
Reconsume the EOF character in the <span>data state</span>.</dd>
<dt>Anything else</dt>
- <dd><span>Parse error</span>. Reconsume the current character in
- the <span>before DOCTYPE system identifier state</span>.</dd>
+ <dd><span>Parse error</span>. Reconsume the character in the
+ <span>before DOCTYPE system identifier state</span>.</dd>
</dl>
More information about the Commit-Watchers
mailing list