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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-xml-namespace.html

Issue 2667303004: Move tests for DOMParser and XMLSerializer to dom/domparsing/. (Closed)
Patch Set: Created 3 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: third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-xml-namespace.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-xml-namespace.html b/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-xml-namespace.html
deleted file mode 100644
index 509b7ea3a8f30d2f2d20ad61dd24569dd5219305..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-xml-namespace.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
- <script type="text/javascript">
- function runTest()
- {
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var target = document.getElementById("target");
-
- var xmlns = "http://www.w3.org/XML/1998/namespace";
-
- // XML with correct xml prefix on space
- var xml1 = document.createElementNS(xmlns, "foo");
- xml1.setAttributeNS(xmlns, 'xml:space', 'preserve');
-
- var xml2 = document.createElementNS(xmlns, "bar");
- xml2.setAttributeNS(xmlns, 'space', 'default');
-
- target.appendChild(xml1);
- target.appendChild(xml2);
-
- var serializer = new XMLSerializer();
- var xmlString = serializer.serializeToString(target);
-
- var outputText = document.getElementById("output");
- outputText.textContent = xmlString;
- }
- </script>
-</head>
- <body onload="runTest()">
- <div id="target"/>
- <div id="output"/>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698