| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/044.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/044.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/044.html
|
| deleted file mode 100644
|
| index d9c1b24bf7230309aa0520cb4fa5c3d16ecc668d..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/044.html
|
| +++ /dev/null
|
| @@ -1,17 +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() {
|
| - document.write("<body><textarea><span>Filler</span></textarea>");
|
| -});
|
| -</script>
|
| -<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>
|
|
|