blob: 8ad8bf5530dc66bdb75cf5bae8df615c6da4bfa2 [file] [log] [blame]
<html>
<head>
<script>
if (window.testRunner) {
testRunner.clearBackForwardList();
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function log(txt)
{
document.getElementById("logger").innerText += txt + "\n";
}
function runTest()
{
history.pushState("StateStringData", "New title");
log("History length is " + history.length);
history.back();
}
var beganTest = false;
function statePopped()
{
// The first time popstate fires, it's because the page has finished loading.
// Only then can we begin the test.
if (!beganTest) {
beganTest = true;
runTest();
return;
}
log("State popped - " + event.state + " (type " + typeof event.state + ")");
if (event.state == null) {
document.body.onpopstate = statePopped;
history.forward();
} else if (window.testRunner)
testRunner.notifyDone();
}
</script>
<body onpopstate="statePopped();">
<pre>
This test does the following:
-Uses body.onpopstate to add a popstate handler (both by using the inline attribute and a script-assigned attribute)
-Makes a call to pushState()
-Makes sure the history length is correct
-Goes back, and makes sure the popstate event is correct
-Goes forward, and makes sure the popstate event is correct
</pre><br>
<pre id="logger"></pre>
</body>
</html>