- From: poot <cvsmail@w3.org>
- Date: Tue, 11 Jan 2011 21:44:03 -0500
- To: public-html-diffs@w3.org
hixie: Nulls in <table> shouldn't cause white space to move before the
table. (whatwg r5755)
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4615&r2=1.4616&f=h
http://html5.org/tools/web-apps-tracker?from=5754&to=5755
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4615
retrieving revision 1.4616
diff -u -d -r1.4615 -r1.4616
--- Overview.html 10 Jan 2011 09:55:20 -0000 1.4615
+++ Overview.html 10 Jan 2011 22:08:27 -0000 1.4616
@@ -60191,7 +60191,15 @@
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
@@ -60206,10 +60214,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
Received on Wednesday, 12 January 2011 02:44:08 UTC