Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: LayoutTests/fast/loader/remove-iframe-during-history-navigation-different.html

Issue 145493005: Keep frames to navigate alive in HistoryController::goToEntry() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: improved as suggested in review Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/loader/remove-iframe-during-history-navigation-different-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/loader/remove-iframe-during-history-navigation-different.html
diff --git a/LayoutTests/fast/loader/remove-iframe-during-history-navigation-different.html b/LayoutTests/fast/loader/remove-iframe-during-history-navigation-different.html
new file mode 100644
index 0000000000000000000000000000000000000000..a71d0794b7ff55ea5fa7d2d2db70702baaa3af8d
--- /dev/null
+++ b/LayoutTests/fast/loader/remove-iframe-during-history-navigation-different.html
@@ -0,0 +1,33 @@
+<!-- One iframe's popstate handler removes another iframe from the
+ document during a history navigation that affects both frames. The
+ history navigation loads a different document in the other frame.
+
+ Should not crash. -->
+
+<script>
+ if (window.testRunner) {
+ testRunner.dumpAsText();
+ testRunner.waitUntilDone();
+ }
+
+ window.onload = function () {
+ frames[0].history.pushState("first", "first");
+ frames[0].onpopstate = function () {
+ document.body.innerHTML = "PASS";
+ if (window.testRunner)
+ testRunner.notifyDone();
+ };
+ document.querySelectorAll("iframe")[1].onload = function () {
+ setTimeout("history.go(-2);", 10);
+ };
+ setTimeout(function () {
+ frames[1].location.href = "resources/empty-subframe.html?new";
+ }, 10);
+ }
+</script>
+
+<body>
+ NOT TESTED
+ <iframe src="resources/empty-subframe.html"></iframe>
+ <iframe src="resources/empty-subframe.html"></iframe>
+</body>
« no previous file with comments | « no previous file | LayoutTests/fast/loader/remove-iframe-during-history-navigation-different-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698