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