blob: 8e4b049a19e05cb53b622ab8a954f8ee2823b35a [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>history_pushState_NoOptionalParam</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function () {
window.history.pushState(1, document.title);
var state;
state = window.history.state;
assert_equals(state, 1, "history state");
}, "history pushState NoOptionalParam");
</script>
</body>
</html>