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