зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
373 B
HTML
17 строки
373 B
HTML
<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>
|