Bugzilla – Bug 550
Make the parser pause flag become true earlier than it has done before. (credit: kg)
Last modified: 2011-05-16 20:36:52 CEST
Index: source =================================================================== --- source (revision 2996) +++ source (revision 2997) @@ -69604,9 +69604,18 @@ <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>