Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <!-- |
michael@0 | 2 | |
michael@0 | 3 | Copyright (c) 2001-2004 World Wide Web Consortium, |
michael@0 | 4 | (Massachusetts Institute of Technology, Institut National de |
michael@0 | 5 | Recherche en Informatique et en Automatique, Keio University). All |
michael@0 | 6 | Rights Reserved. This program is distributed under the W3C's Software |
michael@0 | 7 | Intellectual Property License. This program is distributed in the |
michael@0 | 8 | hope that it will be useful, but WITHOUT ANY WARRANTY; without even |
michael@0 | 9 | the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
michael@0 | 10 | PURPOSE. |
michael@0 | 11 | |
michael@0 | 12 | See W3C License http://www.w3.org/Consortium/Legal/ for more details. |
michael@0 | 13 | |
michael@0 | 14 | --> |
michael@0 | 15 | |
michael@0 | 16 | <!-- |
michael@0 | 17 | |
michael@0 | 18 | This is a radically simplified DTD for use in the DOM Test Suites |
michael@0 | 19 | due to a XML non-conformance of one implementation in processing |
michael@0 | 20 | parameter entities. When that non-conformance is resolved, |
michael@0 | 21 | this DTD can be replaced by the normal DTD for XHTML. |
michael@0 | 22 | |
michael@0 | 23 | --> |
michael@0 | 24 | |
michael@0 | 25 | |
michael@0 | 26 | <!ELEMENT html (head, body)> |
michael@0 | 27 | <!ATTLIST html xmlns CDATA #IMPLIED> |
michael@0 | 28 | <!ELEMENT head (meta,title,script*)> |
michael@0 | 29 | <!ELEMENT meta EMPTY> |
michael@0 | 30 | <!ATTLIST meta |
michael@0 | 31 | http-equiv CDATA #IMPLIED |
michael@0 | 32 | content CDATA #IMPLIED> |
michael@0 | 33 | <!ELEMENT title (#PCDATA)> |
michael@0 | 34 | <!ELEMENT body (p*)> |
michael@0 | 35 | <!ATTLIST body onload CDATA #IMPLIED> |
michael@0 | 36 | <!ELEMENT p (#PCDATA|em|strong|code|sup|var|acronym|abbr)*> |
michael@0 | 37 | <!ATTLIST p |
michael@0 | 38 | xmlns:dmstc CDATA #IMPLIED |
michael@0 | 39 | xmlns:nm CDATA #IMPLIED |
michael@0 | 40 | xmlns:emp2 CDATA #IMPLIED |
michael@0 | 41 | id ID #IMPLIED |
michael@0 | 42 | > |
michael@0 | 43 | <!ELEMENT em (#PCDATA)> |
michael@0 | 44 | <!ELEMENT span (#PCDATA)> |
michael@0 | 45 | <!ELEMENT strong (#PCDATA)> |
michael@0 | 46 | <!ELEMENT code (#PCDATA)> |
michael@0 | 47 | <!ELEMENT sup (#PCDATA)> |
michael@0 | 48 | <!ELEMENT var (#PCDATA|span)*> |
michael@0 | 49 | <!ELEMENT acronym (#PCDATA)> |
michael@0 | 50 | <!ATTLIST acronym |
michael@0 | 51 | title CDATA #IMPLIED |
michael@0 | 52 | class CDATA #IMPLIED |
michael@0 | 53 | id ID #IMPLIED |
michael@0 | 54 | > |
michael@0 | 55 | <!ELEMENT abbr (#PCDATA)> |
michael@0 | 56 | <!ATTLIST abbr |
michael@0 | 57 | title CDATA #IMPLIED |
michael@0 | 58 | class CDATA #IMPLIED |
michael@0 | 59 | id ID #IMPLIED |
michael@0 | 60 | > |
michael@0 | 61 | <!ELEMENT script (#PCDATA)> |
michael@0 | 62 | <!ATTLIST script |
michael@0 | 63 | type CDATA #IMPLIED |
michael@0 | 64 | src CDATA #IMPLIED |
michael@0 | 65 | charset CDATA #IMPLIED> |