- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 01 Jul 2009 04:08:46 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17330
Modified Files:
Overview.html
Log Message:
Define how to tell if the parser is being called re-entrantly more precisely. (whatwg r3347)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2485
retrieving revision 1.2486
diff -u -d -r1.2485 -r1.2486
--- Overview.html 1 Jul 2009 03:55:07 -0000 1.2485
+++ Overview.html 1 Jul 2009 04:08:43 -0000 1.2486
@@ -57376,14 +57376,20 @@
<p id="scriptTagParserResumes">At this stage, if there is a
<a href="#pending-external-script">pending external script</a>, then:</p>
- <dl class="switch"><dt>If the tree construction stage is <a href="#nestedParsing">being called reentrantly</a>, say from a
- call to <code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code>:</dt>
+ <dl class="switch"><dt>If the <a href="#script-nesting-level">script nesting level</a> is not zero:</dt>
- <dd><p>Set the <a href="#parser-pause-flag">parser pause flag</a> to true, and abort
- the processing of any nested invocations of the tokenizer,
- yielding control back to the caller. (Tokenization will resume
- when the caller returns to the "outer" tree construction
- stage.)</dd>
+ <dd>
+
+ <p>Set the <a href="#parser-pause-flag">parser pause flag</a> to true, and abort the
+ processing of any nested invocations of the tokenizer, yielding
+ control back to the caller. (Tokenization will resume when the
+ caller returns to the "outer" tree construction stage.)</p>
+
+ <p class="note">The tree construction stage of this particular
+ parser is <a href="#nestedParsing">being called reentrantly</a>,
+ say from a call to <code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code>.</p>
+
+ </dd>
<dt>Otherwise:</dt>
Received on Wednesday, 1 July 2009 04:08:54 UTC