- From: poot <cvsmail@w3.org>
- Date: Tue, 29 Sep 2009 04:42:08 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Add some more cases that lead to unserializable DOMs. (whatwg r4008) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3169&r2=1.3170&f=h http://html5.org/tools/web-apps-tracker?from=4007&to=4008 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3169 retrieving revision 1.3170 diff -u -d -r1.3169 -r1.3170 --- Overview.html 28 Sep 2009 19:26:36 -0000 1.3169 +++ Overview.html 28 Sep 2009 19:41:48 -0000 1.3170 @@ -64899,7 +64899,8 @@ <li>A <code>DocumentType</code> node that has an external subset system identifier that contains both a U+0022 QUOTATION MARK ('"') - and a U+0027 APOSTROPHE ("'").</li> + and a U+0027 APOSTROPHE ("'") or that contains characters that are + not matched by the XML <code title="">Char</code> production. <a href="#refsXML">[XML]</a></li> <li>A node with a <!--prefix or--> local name containing a U+003A COLON (":").</li> <!--(prefixes can get adjusted, so this isn't an @@ -64909,6 +64910,12 @@ the XML <code title="">Name</code> production. <a href="#refsXML">[XML]</a></li> <!--(again, prefixes can get adjusted, so this isn't an excuse) --> + <li>An <code>Attr</code> node with no namespace whose local name is + the lowercase string "<code title="">xmlns</code>". <a href="#refsXMLNS">[XMLNS]</a></li> + + <li>An <code>Element</code> node with two or more attributes with + the same local name and namespace.</li> + <li>An <code>Attr</code> node, <code>Text</code> node, <code>CDATASection</code> node, <code>Comment</code> node, or <code>ProcessingInstruction</code> node whose data contains
Received on Monday, 28 September 2009 19:42:44 UTC