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