- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 27 Apr 2009 04:09:07 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv18523
Modified Files:
Overview.html
Log Message:
Make the parser pause flag become true earlier than it has done before. (credit: kg) (whatwg r2997)
Index: Overview.html
===================================================================
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:09:17 UTC