| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/013.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/013.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/013.html
|
| deleted file mode 100644
|
| index d7c9a4177ba01382bbefc6c9aff42c34794c50a6..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/013.html
|
| +++ /dev/null
|
| @@ -1,15 +0,0 @@
|
| -<!doctype html>
|
| -<title>document.write</title>
|
| -<script src="../../../../../../resources/testharness.js"></script><script src="../../../../../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -test(
|
| -function() {
|
| - document.write("<i id='test");
|
| - document.write("'>Filler Text");
|
| - assert_equals(document.body.firstChild.localName, "i");
|
| - assert_equals(document.body.firstChild.getAttribute("id"), "test");
|
| - assert_equals(document.body.firstChild.textContent, "Filler Text");
|
| -}
|
| -);
|
| -</script>
|
| -<div id="log"></div>
|
|
|