Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/the-window-object/garbage-collection-and-browsing-contexts/discard_iframe_history_1.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/002.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/the-window-object/garbage-collection-and-browsing-contexts/discard_iframe_history_1.html |
similarity index 52% |
copy from third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/002.html |
copy to third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/the-window-object/garbage-collection-and-browsing-contexts/discard_iframe_history_1.html |
index 451e09f7b6ec2e85db7df9ffb2308e16b9b7663b..b2404ee266278e7aeb2facc0e8d8d591b758087a 100644 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/002.html |
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/the-window-object/garbage-collection-and-browsing-contexts/discard_iframe_history_1.html |
@@ -1,12 +1,10 @@ |
<!doctype html> |
-<title>document.open during parsing</title> |
+<title>Removing iframe from document removes it from history</title> |
<script src="../../../../../../resources/testharness.js"></script> |
<script src="../../../../../../resources/testharnessreport.js"></script> |
<div id="log"></div> |
<script> |
-test(function() { |
- var log = document.getElementById("log"); |
- document.open() |
- assert_equals(document.getElementById("log"), log) |
-}) |
+var t = async_test(); |
+var w = window.open("discard_iframe_history_1-1.html"); |
</script> |
+ |