Skip to content

Commit

Permalink
[] (0) Make sure the insertion point is undefined after parsing, sinc…
Browse files Browse the repository at this point in the history
…e data past that point will be ignored.

git-svn-id: http://svn.whatwg.org/webapps@3459 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 21, 2009
1 parent 823ab9a commit 3c77881
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions index
Expand Up @@ -59446,7 +59446,7 @@ interface <dfn id=messageport>MessagePort</dfn> {
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
Expand Down Expand Up @@ -64890,7 +64890,8 @@ document.body.appendChild(text);
<!-- 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
Expand Down
5 changes: 3 additions & 2 deletions source
Expand Up @@ -73174,7 +73174,7 @@ interface <dfn>MessagePort</dfn> {
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 <span>input stream</span>. If the parser
Expand Down Expand Up @@ -79245,7 +79245,8 @@ document.body.appendChild(text);
<!-- this happens as part of one of the tasks that runs the parser -->

<p>First, the user agent must set the <span>current document
readiness</span> to "interactive".</p>
readiness</span> to "interactive" and the <span>insertion
point</span> to undefined.</p>

<p>Then, the user agent must then make a list of all the scripts
that are in the <span>list of scripts that will execute when the
Expand Down

0 comments on commit 3c77881

Please sign in to comment.