mirror of
https://github.com/servo/servo.git
synced 2025-06-25 01:24:37 +01:00
11 lines
446 B
HTML
11 lines
446 B
HTML
<!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.replaceState(1, "", "#replace");
|
|
assert_equals(navigation.currentEntry.getState(), undefined);
|
|
}, "entry.getState() after history.replaceState()");
|
|
</script>
|