Make the parser pause flag become true earlier than it has done before. (credit: kg) (whatwg r2997)

Make the parser pause flag become true earlier than it has done before.
(credit: kg) (whatwg r2997)

At this stage, if there is a pending external script, then:
http://people.w3.org/mike/diffs/html5/spec/Overview.1.2160.html#scriptTagParserResumes

http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2159&r2=1.2160&f=h
http://html5.org/tools/web-apps-tracker?from=2996&to=2997

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2159
retrieving revision 1.2160
diff -u -d -r1.2159 -r1.2160
--- Overview.html 27 Apr 2009 03:18:09 -0000 1.2159
+++ Overview.html 27 Apr 2009 04:09:03 -0000 1.2160
@@ -51257,9 +51257,18 @@
        <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>

Received on Monday, 27 April 2009 04:11:11 UTC