| 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>
|
|
|