-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
back-same-document.html
40 lines (32 loc) · 1.32 KB
/
back-same-document.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name="variant" content="?no-currententrychange">
<meta name="variant" content="?currententrychange">
<script type="module">
import { Recorder, hasVariant } from "./resources/helpers.mjs";
promise_test(async t => {
// Wait for after the load event so that the navigation doesn't get converted
// into a replace navigation.
await new Promise(resolve => window.onload = () => t.step_timeout(resolve, 0));
await navigation.navigate("#1").finished;
const recorder = new Recorder({
skipCurrentChange: !hasVariant("currententrychange"),
finalExpectedEvent: "finished fulfilled"
});
recorder.setUpNavigationAPIListeners();
const result = navigation.back();
recorder.setUpResultListeners(result);
Promise.resolve().then(() => recorder.record("promise microtask"));
await recorder.readyToAssert;
recorder.assert([
/* event name, location.hash value, navigation.transition properties */
["promise microtask", "#1", null],
["navigate", "#1", null],
["currententrychange", "", null],
["committed fulfilled", "", null],
["navigatesuccess", "", null],
["finished fulfilled", "", null],
]);
}, "event and promise ordering for same-document navigation.back()");
</script>