OLD | NEW |
(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> |
OLD | NEW |