- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 24 Jan 2009 00:18:22 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv32449 Modified Files: Overview.html Log Message: Handle <!DOCTYPE> in parser. (whatwg r2700) Index: Overview.html =================================================================== 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:18:31 UTC