Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[cgiowt] (2) Make the parser pause flag become true earlier than it h…
…as done before. (credit: kg)

git-svn-id: http://svn.whatwg.org/webapps@2997 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 27, 2009
1 parent d362dec commit 8d3aae8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions index
Expand Up @@ -56941,9 +56941,18 @@ interface <dfn id=messageport>MessagePort</dfn> {
<li><p>Let the <a href=#insertion-point>insertion point</a> be just before the
<a href=#next-input-character>next input character</a>.</li>

<li><p>Increment the parser's <a href=#script-nesting-level>script nesting level</a>
by one (it should be zero before this step, so this sets it to
one).</li>

<li><p><a href=#executing-a-script-block title="executing a script block">Execute the
script</a>.</li>

<li><p>Decrement the parser's <a href=#script-nesting-level>script nesting level</a>
by one. If the parser's <a href=#script-nesting-level>script nesting level</a> is
zero (which it always should be at this point), then set the
<a href=#parser-pause-flag>parser pause flag</a> to false.</p>

<li><p>Let the <a href=#insertion-point>insertion point</a> be undefined
again.</li>

Expand Down
9 changes: 9 additions & 0 deletions source
Expand Up @@ -69604,9 +69604,18 @@ interface <dfn>MessagePort</dfn> {
<li><p>Let the <span>insertion point</span> be just before the
<span>next input character</span>.</p></li>

<li><p>Increment the parser's <span>script nesting level</span>
by one (it should be zero before this step, so this sets it to
one).</p></li>

<li><p><span title="executing a script block">Execute the
script</span>.</p></li>

<li><p>Decrement the parser's <span>script nesting level</span>
by one. If the parser's <span>script nesting level</span> is
zero (which it always should be at this point), then set the
<span>parser pause flag</span> to false.</p>

<li><p>Let the <span>insertion point</span> be undefined
again.</p></li>

Expand Down

0 comments on commit 8d3aae8

Please sign in to comment.