hixie: Make sure the insertion point is undefined after parsing, since data past that point will be ignored. (whatwg r3459)

hixie: Make sure the insertion point is undefined after parsing, since
data past that point will be ignored. (whatwg r3459)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2583&r2=1.2584&f=h
http://html5.org/tools/web-apps-tracker?from=3458&to=3459

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2583
retrieving revision 1.2584
diff -u -d -r1.2583 -r1.2584
--- Overview.html 21 Jul 2009 06:26:27 -0000 1.2583
+++ Overview.html 21 Jul 2009 07:24:17 -0000 1.2584
@@ -53301,7 +53301,7 @@
   inserted. The insertion point is relative to the position of the
   character immediately after it, it is not an absolute offset into
   the input stream. Initially, the insertion point is
-  uninitialized.</p>
+  undefined.</p>
 
   <p>The "EOF" character in the tables below is a conceptual character
   representing the end of the <a href="#the-input-stream">input stream</a>. If the parser
@@ -58745,7 +58745,8 @@
   <!-- this happens as part of one of the tasks that runs the parser -->
 
   <p>First, the user agent must set the <a href="#current-document-readiness">current document
-  readiness</a> to "interactive".</p>
+  readiness</a> to "interactive" and the <a href="#insertion-point">insertion
+  point</a> to undefined.</p>
 
   <p>Then, the user agent must then make a list of all the scripts
   that are in the <a href="#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing">list of scripts that will execute when the

Received on Tuesday, 21 July 2009 07:25:15 UTC