| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/046.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/046.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/046.html
|
| deleted file mode 100644
|
| index 506d3094b20c7be11edc096bdf2b1bb7dd30981f..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/046.html
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -<!doctype html>
|
| -<title>document.write</title>
|
| -<script src="../../../../../../resources/testharness.js"></script><script src="../../../../../../resources/testharnessreport.js"></script>
|
| -<script>
|
| -var t = async_test();
|
| -t.step(function() {
|
| - var s = "<body><textarea>";
|
| - for (var i=0; i<s.length; i++) {
|
| - document.write(s[i]);
|
| - }
|
| -});
|
| -</script><span>Filler</span></textarea>
|
| -<script>
|
| -t.step(function() {
|
| - assert_equals(document.body.childNodes[0].localName, "textarea");
|
| - assert_equals(document.body.childNodes[0].textContent, "<span>Filler</span>");
|
| -})
|
| -t.done();
|
| -</script>
|
| -<div id="log"></div>
|
|
|