2 onunload = function() {
6 onpopstate = function() {
8 // Verify that we are still in an iframe
9 if (topWin
== window
) {
10 topWin
.document
.body
.innerHTML
= "FAIL";
12 topWin
.document
.body
.innerHTML
= "PASS";
14 if (topWin
.testRunner
)
15 topWin
.testRunner
.notifyDone();
19 history
.pushState(null, null);
20 history
.pushState(null, null);
21 setTimeout(function() { history
.back() }, 0);