NOTE: The current preferred location for bug reports is the GitHub issue tracker.
Bug 550 - Make the parser pause flag become true earlier than it has done before. (credit: kg)
Make the parser pause flag become true earlier than it has done before. (cred...
Status: RESOLVED NOTREPRODUCIBLE
Product: Validator.nu
Classification: Unclassified
Component: HTML parser
HEAD
All All
: P2 normal
Assigned To: Nobody
http://svn.whatwg.org/webapps/source?...
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2009-05-27 14:29 CEST by Henri Sivonen
Modified: 2011-05-16 20:36 CEST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Henri Sivonen 2009-05-27 14:29:18 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>