| Index: third_party/WebKit/LayoutTests/fast/dom/serialize-cdata.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/serialize-cdata.html b/third_party/WebKit/LayoutTests/fast/dom/serialize-cdata.html
|
| deleted file mode 100644
|
| index b848019d353be81e3334a9dc8b9c6055db730353..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/serialize-cdata.html
|
| +++ /dev/null
|
| @@ -1,15 +0,0 @@
|
| -<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=11772">bug 11772</a>:
|
| -XMLSerializer.serializeToString incorrect value for CDATA nodes.</p>
|
| -<p>Should say PASS below.</p>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -var d = window.document.implementation.createDocument("", "", null);
|
| -var n = d.createCDATASection("-- <cdata> --");
|
| -var s = (new XMLSerializer()).serializeToString(n);
|
| -if (s == "<![CDATA[-- <cdata> --]]>")
|
| - document.write("PASS");
|
| -else
|
| - document.write("FAIL");
|
| -</script>
|
|
|