Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: LayoutTests/fast/dom/DOMImplementation/createDocument-XMLDocument.html

Issue 144063004: Add support for DOM4's XMLDocument interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove FIXME about XMLDocument.load() Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/DOMImplementation/createDocument-XMLDocument.html
diff --git a/LayoutTests/fast/dom/DOMImplementation/createDocument-XMLDocument.html b/LayoutTests/fast/dom/DOMImplementation/createDocument-XMLDocument.html
new file mode 100644
index 0000000000000000000000000000000000000000..fe92f80dd717e0928d7cb47b5b6551f4807de3d0
--- /dev/null
+++ b/LayoutTests/fast/dom/DOMImplementation/createDocument-XMLDocument.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="../../../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+description('Check that DOMImplementation.createDocument() returns an XMLDocument.');
+
+shouldBeEqualToString('window.XMLDocument.name', 'XMLDocument');
+shouldBe('XMLDocument.prototype.__proto__', 'Document.prototype');
+
+shouldBe('document.implementation.createDocument("", "").__proto__', 'XMLDocument.prototype');
+shouldBe('document.implementation.createDocument("", "html").__proto__', 'XMLDocument.prototype');
+shouldBe('document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html").__proto__', 'XMLDocument.prototype');
+shouldBe('document.implementation.createDocument("http://www.w3.org/2000/xmlns/", "xmlns:test").__proto__', 'XMLDocument.prototype');
+// FIXME: This is not passing yet, this currently returns an SVGDocument which is no longer part of SVG2.
+shouldBe('document.implementation.createDocument("http://www.w3.org/2000/svg", "svg").__proto__', 'XMLDocument.prototype');
+</script>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698