blob: 838467d782776af5d8c982ce0d11bdf9c9e9dc6a [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>history_replaceStateNoOptionalParam</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function () {
window.history.replaceState(1, document.title);
var second;
second = window.history.state;
assert_equals(second, 1, "history state");
}, "history replaceStateNoOptionalParam");
</script>
</body>
</html>