Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/003.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/003.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/003.html |
deleted file mode 100644 |
index cc2c4d3c1de160a5ad587b3b0df7f860528fde1e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/003.html |
+++ /dev/null |
@@ -1,14 +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("<"); |
- document.write("i>Filler Text"); |
- assert_equals(document.body.firstChild.localName, "i"); |
- assert_equals(document.body.firstChild.textContent, "Filler Text"); |
-} |
-); |
-</script> |
-<div id="log"></div> |