Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/020.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/020.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/020.html |
deleted file mode 100644 |
index fb763ea6cb2c12ffb2c790255838349cf2d42067..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/020.html |
+++ /dev/null |
@@ -1,18 +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(); |
-t.step(function() { |
- document.write("<body><"); |
-}); |
-</script>!--comment--> |
-<script> |
-t.step(function() { |
- assert_equals(document.body.childNodes[0].nodeType, document.COMMENT_NODE); |
- assert_equals(document.body.childNodes[0].data, "comment"); |
-} |
-); |
-t.done(); |
-</script> |
-<div id="log"></div> |