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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-entities.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-entities.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-entities.html b/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-entities.html
deleted file mode 100644
index dd1ad6871d40e6ad716ef2e049c5475395fe8e11..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/XMLSerializer-entities.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
- <script type="text/javascript">
- function runTest()
- {
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var ns = 'http://www.w3.org/1999/xhtml';
- var xhtml = document.implementation.createDocument(ns , 'html', null);
-
- var p = xhtml.createElementNS(ns, 'p');
- p.textContent = '(0 < 1 && 1 > 0)';
- xhtml.documentElement.appendChild(p);
-
- var script = xhtml.createElementNS(ns, 'script');
- script.textContent = 'if (0 < 1 && 1 > 0) { };';
- xhtml.documentElement.appendChild(script);
-
- var style = xhtml.createElementNS(ns, 'style');
- style.textContent = '/* < > & */';
- xhtml.documentElement.appendChild(style);
-
- var serializer = new XMLSerializer();
- var xmlString = serializer.serializeToString(xhtml);
-
- var outputText = document.getElementById("output");
- outputText.textContent = xmlString;
- }
- </script>
-</head>
- <body onload="runTest()">
- <div id="output"/>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698