Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!doctype html>
<title>Traverse the history after document.write after the load event</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var t = async_test();
started = false;
pages = []
start_test_wait = t.step_func(
function() {
check_result = t.step_func(
function() {
if (pages.length < 3) {
setTimeout(check_result, 500);
return
}
assert_array_equals(pages, [2, 3, 1], "Pages opened during history navigation");
t.done();
}
)
setTimeout(check_result, 500);
}
);
t.step(function() {
win = window.open("history_entry.html?urls=traverse_the_history_write_after_load_1-1.html");
t.add_cleanup(function() {win.close()});
});
</script>