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

Side by Side Diff: LayoutTests/http/tests/navigation/back-to-redirect-with-frame.php

Issue 139103003: Reland "Remove children from HistoryNodes that redirect during back/forward navigation" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make trybots happy 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/http/tests/navigation/back-to-redirect-with-frame-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?php
2 if (isset($_COOKIE['back-to-redirect-with-frame'])) {
3 header('Location: resources/pass-and-notify-done.html');
4 exit;
5 }
6
7 header("Cache-Control: no-store");
8 header("Set-Cookie: back-to-redirect-with-frame = true;");
9 ?>
10 <body>
11 <script>
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 testRunner.dumpBackForwardList();
15 testRunner.waitUntilDone();
16 }
17
18 window.onload = setTimeout(function() {
19 window.location = "resources/go-back.html"
20 }, 10);
21 </script>
22 <iframe src="about:blank"></iframe>
23 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/navigation/back-to-redirect-with-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698