Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/009.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/009.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/009.html |
deleted file mode 100644 |
index 7be285bc8787bb1e9b272aa8d5a8f034d8a7c8d1..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/009.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"); |
- document.write("='test'>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> |