Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_002.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_002.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_002.html |
deleted file mode 100644 |
index fa5e7876a81b9f7c267d3e0befd68a53c04f1b6e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_002.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!doctype html> |
-<title>document.write into iframe</title> |
-<script src="../../../../../../resources/testharness.js"></script><script src="../../../../../../resources/testharnessreport.js"></script> |
-<iframe id="test"></iframe> |
-<script> |
-test( |
-function() { |
- var iframe = document.getElementById("test"); |
- var s = "<i id='a'>Filler Text</i><b id=b>Filler Text</b>" |
- for (var i=0; i<s.length; i++) { |
- iframe.contentDocument.write(s[i]); |
- } |
- iframe.contentDocument.close(); |
- assert_equals(iframe.contentDocument.body.childNodes[0].textContent, "Filler Text"); |
- assert_equals(iframe.contentDocument.body.childNodes[0].localName, "i"); |
- assert_equals(iframe.contentDocument.body.childNodes[0].getAttribute('id'), "a"); |
- assert_equals(iframe.contentDocument.body.childNodes[1].textContent, "Filler Text"); |
- assert_equals(iframe.contentDocument.body.childNodes[1].localName, "b"); |
- assert_equals(iframe.contentDocument.body.childNodes[1].getAttribute('id'), "b"); |
-}); |
-</script> |
-<div id="log"></div> |