hixie: Update diagram. (whatwg r6460)

hixie: Update diagram. (whatwg r6460)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5161&r2=1.5162&f=h
http://html5.org/tools/web-apps-tracker?from=6459&to=6460

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5161
retrieving revision 1.5162
diff -u -d -r1.5161 -r1.5162
--- Overview.html 15 Aug 2011 05:43:53 -0000 1.5161
+++ Overview.html 15 Aug 2011 20:27:11 -0000 1.5162
@@ -19031,11 +19031,12 @@
 
    <pre>&lt;p&gt;In the common case, the data handled by the tokenization stage
 comes from the network, but it can also come from script.&lt;/p&gt;
-&lt;p&gt;<strong>&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt="The network
-passes data to the Tokenizer stage, which passes data to the Tree
-Construction stage. From there, data goes to both the DOM and to
-Script Execution. Script Execution is linked to the DOM, and, using
-document.write(), passes data to the Tokenizer."&gt;</strong>&lt;/p&gt;</pre>
+&lt;p&gt;<strong>&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt="The Network
+passes data to the Input Stream Preprocessor, which passes it to the
+Tokenizer, which passes it to the Tree Construction stage. From there,
+data goes to both the DOM and to Script Execution. Script Execution is
+linked to the DOM, and, using document.write(), passes data to the
+Tokenizer."&gt;</strong>&lt;/p&gt;</pre>
 
   </div><div class="example">
 
@@ -19203,11 +19204,11 @@
 
    <p>A flowchart that repeats the previous paragraph in graphical form:</p>
 
-   <pre>&lt;p&gt;The network passes data to the Tokenizer stage, which
-passes data to the Tree Construction stage. From there, data goes
-to both the DOM and to Script Execution. Script Execution is
-linked to the DOM, and, using document.write(), passes data to
-the Tokenizer.&lt;/p&gt;
+   <pre>&lt;p&gt;The Network passes data to the Input Stream Preprocessor, which
+passes it to the Tokenizer, which passes it to the Tree Construction
+stage. From there, data goes to both the DOM and to Script Execution.
+Script Execution is linked to the DOM, and, using document.write(),
+passes data to the Tokenizer.&lt;/p&gt;
 <strong>&lt;p&gt;&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt=""&gt;&lt;/p&gt;</strong></pre>
 
    <p>In these cases, it would be wrong to include alternative text
@@ -19219,36 +19220,37 @@
    representation, and would thus require alternative text.</p>
 
    <pre>&lt;!-- Using the title="" attribute --&gt;
-&lt;p&gt;The network passes data to the Tokenizer stage, which
-passes data to the Tree Construction stage. From there, data goes
-to both the DOM and to Script Execution. Script Execution is
-linked to the DOM, and, using document.write(), passes data to
-the Tokenizer.&lt;/p&gt;
+&lt;p&gt;The Network passes data to the Input Stream Preprocessor, which
+passes it to the Tokenizer, which passes it to the Tree Construction
+stage. From there, data goes to both the DOM and to Script Execution.
+Script Execution is linked to the DOM, and, using document.write(),
+passes data to the Tokenizer.&lt;/p&gt;
 &lt;p&gt;<strong>&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt=""
         title="Flowchart representation of the parsing model."&gt;</strong>&lt;/p&gt;</pre>
 
    <pre>&lt;!-- Using &lt;figure&gt; and &lt;figcaption&gt; --&gt;
-&lt;p&gt;The network passes data to the Tokenizer stage, which
-passes data to the Tree Construction stage. From there, data goes
-to both the DOM and to Script Execution. Script Execution is
-linked to the DOM, and, using document.write(), passes data to
-the Tokenizer.&lt;/p&gt;
+&lt;p&gt;The Network passes data to the Input Stream Preprocessor, which
+passes it to the Tokenizer, which passes it to the Tree Construction
+stage. From there, data goes to both the DOM and to Script Execution.
+Script Execution is linked to the DOM, and, using document.write(),
+passes data to the Tokenizer.&lt;/p&gt;
 &lt;figure&gt;
- <strong>&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt="The Network leads
- to the Tokenizer, which leads to the Tree Construction. The Tree
- Construction leads to two items. The first is Script Execution, which
- leads via document.write() back to the Tokenizer. The second item
- from which Tree Construction leads is the DOM. The DOM is related to
- the Script Execution."&gt;</strong>
+ <strong>&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" alt="The Network leads to
+ the Input Stream Preprocessor, which leads to the Tokenizer, which
+ leads to the Tree Construction stage. The Tree Construction stage
+ leads to two items. The first is Script Execution, which leads via
+ document.write() back to the Tokenizer. The second item from which
+ Tree Construction leads is the DOM. The DOM is related to the Script
+ Execution."&gt;</strong>
  &lt;figcaption&gt;Flowchart representation of the parsing model.&lt;/figcaption&gt;
 &lt;/figure&gt;</pre>
 
    <pre class="bad">&lt;!-- This is WRONG. Do not do this. Instead, do what the above examples do. --&gt;
-&lt;p&gt;The network passes data to the Tokenizer stage, which
-passes data to the Tree Construction stage. From there, data goes
-to both the DOM and to Script Execution. Script Execution is
-linked to the DOM, and, using document.write(), passes data to
-the Tokenizer.&lt;/p&gt;
+&lt;p&gt;The Network passes data to the Input Stream Preprocessor, which
+passes it to the Tokenizer, which passes it to the Tree Construction
+stage. From there, data goes to both the DOM and to Script Execution.
+Script Execution is linked to the DOM, and, using document.write(),
+passes data to the Tokenizer.&lt;/p&gt;
 &lt;p&gt;&lt;img src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png"
         alt="Flowchart representation of the parsing model."&gt;&lt;/p&gt;
 &lt;!-- Never put the image's caption in the alt="" attribute! --&gt;</pre>
@@ -55786,7 +55788,7 @@
   insertion">it can also come from script</a> running in the user
   agent, e.g. using the <code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code> API.</p>
 
-  <p><img alt="" height="554" src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" width="427"></p>
+  <p><object data="images/parsing-model-overview.svg" height="450" width="345"><img alt="" height="450" src="http://dev.w3.org/html5/spec/images/parsing-model-overview.png" width="345"></object></p>
 
   <p id="nestedParsing">There is only one set of states for the
   tokenizer stage and the tree construction stage, but the tree

Received on Monday, 15 August 2011 20:27:40 UTC