[html5] r5755 - [cgiowt] (0) Nulls in <table> shouldn't cause white space to move before the tab [...]
whatwg at whatwg.org
whatwg at whatwg.org
Mon Jan 10 14:08:23 PST 2011
Author: ianh
Date: 2011-01-10 14:08:21 -0800 (Mon, 10 Jan 2011)
New Revision: 5755
Modified:
complete.html
index
source
Log:
[cgiowt] (0) Nulls in <table> shouldn't cause white space to move before the table.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=11309
Modified: complete.html
===================================================================
--- complete.html 2011-01-10 09:55:13 UTC (rev 5754)
+++ complete.html 2011-01-10 22:08:21 UTC (rev 5755)
@@ -82302,9 +82302,17 @@
mode: in table text">in table text</a>", tokens must be handled
as follows:</p>
- <dl class=switch><dt>A character token</dt>
+ <dl class=switch><dt>A character token that is U+0000 NULL</dt>
<dd>
+ <p><a href=#parse-error>Parse error</a>. Ignore the token.</p>
+
+ </dd>
+
+
+ <dt>Any other character token</dt>
+ <dd>
+
<p>Append the character token to the <var><a href=#pending-table-character-tokens>pending table character
tokens</a></var> list.</p>
@@ -82317,10 +82325,10 @@
<p>If any of the tokens in the <var><a href=#pending-table-character-tokens>pending table character
tokens</a></var> list are character tokens that are not one of U+0009
CHARACTER TABULATION, U+000A LINE FEED (LF), U+000C FORM FEED
- (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then
- reprocess those character tokens using the rules given in the
- "anything else" entry in the <a href=#parsing-main-intable title="insertion mode: in
- table">in table</a>" insertion mode.</p>
+ (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then reprocess
+ those character tokens using the rules given in the "anything
+ else" entry in the <a href=#parsing-main-intable title="insertion mode: in table">in
+ table</a>" insertion mode.</p>
<p>Otherwise, <a href=#insert-a-character title="insert a character">insert the
characters</a> given by the <var><a href=#pending-table-character-tokens>pending table character
Modified: index
===================================================================
--- index 2011-01-10 09:55:13 UTC (rev 5754)
+++ index 2011-01-10 22:08:21 UTC (rev 5755)
@@ -78276,9 +78276,17 @@
mode: in table text">in table text</a>", tokens must be handled
as follows:</p>
- <dl class=switch><dt>A character token</dt>
+ <dl class=switch><dt>A character token that is U+0000 NULL</dt>
<dd>
+ <p><a href=#parse-error>Parse error</a>. Ignore the token.</p>
+
+ </dd>
+
+
+ <dt>Any other character token</dt>
+ <dd>
+
<p>Append the character token to the <var><a href=#pending-table-character-tokens>pending table character
tokens</a></var> list.</p>
@@ -78291,10 +78299,10 @@
<p>If any of the tokens in the <var><a href=#pending-table-character-tokens>pending table character
tokens</a></var> list are character tokens that are not one of U+0009
CHARACTER TABULATION, U+000A LINE FEED (LF), U+000C FORM FEED
- (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then
- reprocess those character tokens using the rules given in the
- "anything else" entry in the <a href=#parsing-main-intable title="insertion mode: in
- table">in table</a>" insertion mode.</p>
+ (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then reprocess
+ those character tokens using the rules given in the "anything
+ else" entry in the <a href=#parsing-main-intable title="insertion mode: in table">in
+ table</a>" insertion mode.</p>
<p>Otherwise, <a href=#insert-a-character title="insert a character">insert the
characters</a> given by the <var><a href=#pending-table-character-tokens>pending table character
Modified: source
===================================================================
--- source 2011-01-10 09:55:13 UTC (rev 5754)
+++ source 2011-01-10 22:08:21 UTC (rev 5755)
@@ -93186,9 +93186,17 @@
<dl class="switch">
- <dt>A character token</dt>
+ <dt>A character token that is U+0000 NULL</dt>
<dd>
+ <p><span>Parse error</span>. Ignore the token.</p>
+
+ </dd>
+
+
+ <dt>Any other character token</dt>
+ <dd>
+
<p>Append the character token to the <var>pending table character
tokens</var> list.</p>
@@ -93201,10 +93209,10 @@
<p>If any of the tokens in the <var>pending table character
tokens</var> list are character tokens that are not one of U+0009
CHARACTER TABULATION, U+000A LINE FEED (LF), U+000C FORM FEED
- (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then
- reprocess those character tokens using the rules given in the
- "anything else" entry in the <span title="insertion mode: in
- table">in table</span>" insertion mode.</p>
+ (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then reprocess
+ those character tokens using the rules given in the "anything
+ else" entry in the <span title="insertion mode: in table">in
+ table</span>" insertion mode.</p>
<p>Otherwise, <span title="insert a character">insert the
characters</span> given by the <var>pending table character
More information about the Commit-Watchers
mailing list