html5/spec Overview.html,1.4615,1.4616

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv30553

Modified Files:
	Overview.html 
Log Message:
Nulls in <table> shouldn't cause white space to move before the table. (whatwg r5755)

Index: Overview.html
===================================================================
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 Monday, 10 January 2011 22:08:32 UTC