diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /dom/base/test/test_bug450160.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/base/test/test_bug450160.html')
-rw-r--r-- | dom/base/test/test_bug450160.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/dom/base/test/test_bug450160.html b/dom/base/test/test_bug450160.html new file mode 100644 index 0000000000..2b2f80e693 --- /dev/null +++ b/dom/base/test/test_bug450160.html @@ -0,0 +1,100 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=450160 +--> +<head> + <title>Test for Bug 450160</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> +</head> +<body> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=450160">Mozilla Bug 450160</a> +<p id="display"></p> +<div id="content" style="display: none"> + +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 450160 **/ + + +function testHTMLDocument() { + var doc = document.implementation.createHTMLDocument(); + ok(!!doc.documentElement, "Document should have document element!"); + ok(!!doc.body, "Should have .body!"); + ok(doc instanceof HTMLDocument, + "Document should be an HTML document!"); +} + +function testSVGDocument() { + var docType1 = + document.implementation.createDocumentType("svg", + "-//W3C//DTD SVG 1.1//EN", + null); + ok(docType1, "No doctype?"); + ok(docType1.ownerDocument, "docType should have ownerDocument!"); + var doc1 = document.implementation.createDocument(null, null, docType1); + is(docType1.ownerDocument, doc1, "docType should have ownerDocument!"); + ok(!doc1.documentElement, "Document shouldn't have document element!"); + ok(!(doc1 instanceof HTMLDocument), + "Document shouldn't be an HTML document!"); + ok(doc1 instanceof XMLDocument, + "Document should be an XML document!"); + + // SVG documents have .documentElement. + ok("documentElement" in doc1, "No .documentElement in document"); + + var docType2 = + document.implementation.createDocumentType("svg", + "-//W3C//DTD SVG 1.1//EN", + null); + var doc2 = document.implementation.createDocument("http://www.w3.org/2000/svg", + "svg", docType2); + ok(doc2.documentElement, "Document should have document element!"); + is(doc2.documentElement.localName, "svg", "Wrong .documentElement!"); +} + +function testFooBarDocument() { + var docType1 = + document.implementation.createDocumentType("FooBar", "FooBar", null); + ok(docType1, "No doctype?"); + ok(docType1.ownerDocument, "docType should have ownerDocument!"); + var doc1 = document.implementation.createDocument(null, null, docType1); + is(docType1.ownerDocument, doc1, "docType should have ownerDocument!"); + ok(!doc1.documentElement, "Document shouldn't have document element!"); + ok(!(doc1 instanceof HTMLDocument), + "Document shouldn't be an HTML document!"); + + var docType2 = + document.implementation.createDocumentType("FooBar", "FooBar", null); + var doc2 = document.implementation.createDocument("FooBarNS", + "FooBar", docType2); + ok(doc2.documentElement, "Document should have document element!"); + is(doc2.documentElement.namespaceURI, "FooBarNS", "Wrong namespaceURI!"); + is(doc2.documentElement.localName, "FooBar", "Wrong localName!"); +} + +function testNullDocTypeDocument() { + var doc1 = document.implementation.createDocument(null, null, null); + ok(!doc1.documentElement, "Document shouldn't have document element!"); + ok(!(doc1 instanceof HTMLDocument), + "Document shouldn't be an HTML document!"); + + var doc2 = document.implementation.createDocument("FooBarNS", + "FooBar", null); + ok(doc2.documentElement, "Document should have document element!"); + is(doc2.documentElement.namespaceURI, "FooBarNS", "Wrong namespaceURI!"); + is(doc2.documentElement.localName, "FooBar", "Wrong localName!"); +} + +testHTMLDocument(); +testSVGDocument(); +testFooBarDocument(); +testNullDocTypeDocument(); + +</script> +</pre> +</body> +</html> |