mirror of
https://github.com/servo/servo.git
synced 2025-10-10 21:40:22 +01:00
11 lines
450 B
HTML
11 lines
450 B
HTML
<!doctype html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
test(() => {
|
|
navigation.navigate("#", { history: "replace", state: { data: "value" } });
|
|
assert_equals(navigation.currentEntry.getState().data, "value");
|
|
history.pushState(1, "", "#push");
|
|
assert_equals(navigation.currentEntry.getState(), undefined);
|
|
}, "entry.getState() after history.pushState()");
|
|
</script>
|