blob: 55e32ce93d5574b447491c7fbb14e5b432741d1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<script>
function go() {
var a = window.history.state;
window.history.replaceState(a, "", "1");
var ok = opener.ok;
var SimpleTest = opener.SimpleTest;
ok("Addition of history in unload did not crash browser");
SimpleTest.finish();
}
</script>
</head>
<body onunload="go()">
</body>
</html>
|