spec/Overview.html 1.1870 2700 Handle <!DOCTYPE> in parser. (whatwg r27

Handle <!DOCTYPE> in parser. (whatwg r2700)

Then, if the DOCTYPE token matches one of the conditions in the following list, then set the document to quirks mode:
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1870.html#quirks-mode-doctypes
DOCTYPE parse error
http://people.w3.org/mike/diffs/html5/spec/Overview.1.1870.html#doctype-parse-error

http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1869&r2=1.1870&f=h
http://html5.org/tools/web-apps-tracker?from=2699&to=2700

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1869
retrieving revision 1.1870
diff -u -d -r1.1869 -r1.1870
--- Overview.html 24 Jan 2009 00:15:26 -0000 1.1869
+++ Overview.html 24 Jan 2009 00:18:19 -0000 1.1870
@@ -40058,16 +40058,18 @@
 
     <p>Append a <code>DocumentType</code> node to the
     <code>Document</code> node, with the <code title="">name</code>
-    attribute set to the name given in the DOCTYPE token; the <code title="">publicId</code> attribute set to the public identifier
-    given in the DOCTYPE token, or the empty string if the public
-    identifier was missing; the <code title="">systemId</code>
-    attribute set to the system identifier given in the DOCTYPE token,
-    or the empty string if the system identifier was missing; and the
-    other attributes specific to <code>DocumentType</code> objects set
-    to null and empty lists as appropriate. Associate the
-    <code>DocumentType</code> node with the <code>Document</code>
-    object so that it is returned as the value of the <code title="">doctype</code> attribute of the <code>Document</code>
-    object.</p>
+    attribute set to the name given in the DOCTYPE token, or the empty
+    string if the name was missing; the <code title="">publicId</code>
+    attribute set to the public identifier given in the DOCTYPE token,
+    or the empty string if the public identifier was missing; the
+    <code title="">systemId</code> attribute set to the system
+    identifier given in the DOCTYPE token, or the empty string if the
+    system identifier was missing; and the other attributes specific
+    to <code>DocumentType</code> objects set to null and empty lists
+    as appropriate. Associate the <code>DocumentType</code> node with
+    the <code>Document</code> object so that it is returned as the
+    value of the <code title="">doctype</code> attribute of the
+    <code>Document</code> object.</p>
 
     <p id=quirks-mode-doctypes>Then, if the DOCTYPE
     token matches one of the conditions in the following list, then

Received on Saturday, 24 January 2009 00:22:10 UTC