blob: 73fb89f2a0f8d4daf76537038b1eb315cd1bb0b0 [file] [log] [blame]
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
navigation.updateCurrentEntry({ state : { data : "value" } });
assert_equals(navigation.currentEntry.getState().data, "value");
history.pushState(1, "", "#push");
assert_equals(navigation.currentEntry.getState(), undefined);
}, "appHistoryEntry.getState() after history.pushState()");
</script>