root/LayoutTests/http/tests/navigation/back-to-redirect-with-frame.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
if (isset($_COOKIE['back-to-redirect-with-frame'])) {
    header('Location: resources/pass-and-notify-done.html');
    exit;
}

header("Cache-Control: no-store");
header("Set-Cookie: back-to-redirect-with-frame = true;");
?>
<body>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    testRunner.dumpBackForwardList();
    testRunner.waitUntilDone();
}

window.onload = setTimeout(function() {
    window.location = "resources/go-back.html"
}, 10);
</script>
<iframe src="about:blank"></iframe>
</body>

/* [<][>][^][v][top][bottom][index][help] */