blob: d754fb5595d46862499c391d9707b29c3cffec36 [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
// Wait for after the load event so that the navigation doesn't get converted
// into a replace navigation.
window.onload = () => t.step_timeout(t.step_func_done(() => {
let navState = { statevar: "state" };
appHistory.navigate("#foo", { replace: true, state: navState });
appHistory.navigate("#bar");
appHistory.onnavigate = t.step_func_done(e => {
assert_not_equals(e.destination, null);
assert_not_equals(e.destination.getState(), undefined);
assert_not_equals(e.destination.getState(), e.destination.getState());
});
appHistory.back();
}), 0);
}, "navigate event destination.getState() on back/forward navigation");
</script>