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