blob: e24fc0f31c14c990b89b5e5d1fdd4ce503b923eb [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
appHistory.navigate("#", { replace : true, state : { data : "value" } });
assert_equals(appHistory.current.getState().data, "value");
history.pushState(1, "", "#push");
assert_equals(appHistory.current.getState(), undefined);
}, "appHistoryEntry.getState() after history.pushState()");
</script>