| <html xmlns="http://www.w3.org/1999/xhtml"> |
| document.getElementById('console').appendChild(document.createTextNode(msg + "\n")); |
| log("PASS: a doctype in a XML document is not ignored."); |
| log("FAIL: a doctype in a XML document is ignored."); |
| if (document.firstChild == document.doctype) |
| log("PASS: a doctype in an XML document is correctly set to the first child of the Document."); |
| log("FAIL: a doctype in an XML document is not correctly set to the first child of the Document."); |
| This tests the behavior of a Doctype in an XML document. |