Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/047.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/047.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/047.html |
deleted file mode 100644 |
index ee78a00160095fdb76c2c727a741f164bd40b1be..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/047.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> |
-var t = async_test(); |
-onload = function() { |
- t.step(function() { |
- document.write("<body>Filler Text<div id='log'></div>"); |
- assert_equals(document.body.textContent, "Filler Text"); |
- }); |
- t.done(); |
-}; |
-</script> |
-<body>FAIL |
-<div id="log"></div> |