summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/traverseTo-detach-between-navigate-and-navigatesuccess.html
blob: 43bde9a103bc13fd1cb88320da1fb60df0de0fa5 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="return-value/resources/helpers.js"></script>

<iframe id="i" src="/common/blank.html"></iframe>

<script>
async_test(t => {
  window.onload = t.step_func(() => {
    const iWindow = i.contentWindow;
    const iDOMException = iWindow.DOMException;
    const iNavigationHistoryEntry = iWindow.NavigationHistoryEntry;

    i.contentWindow.navigation.navigate("#1").finished.then(t.step_func(() => {
      assert_equals(i.contentWindow.navigation.entries().length, 2);
      let key = i.contentWindow.navigation.entries()[0].key;

      let onnavigateerror_called = false;
      let result;

      i.contentWindow.navigation.onnavigate = t.step_func(e => {
        // 1. The intercept handler runs.
        // 2. "t.step_timeout(handlerRunResolve, 0)" executes handlerRunResolve in a macro task.
        // 3. In the next microtask, the iframe is removed.
        // 4. "t.step_timeout(resolve, 5)" executes and the intercept handler promise resolves.
        let handlerRunResolve;
        new Promise(r => handlerRunResolve = r).then(() => i.remove());
        e.intercept({ handler() {
          t.step_timeout(handlerRunResolve, 0);
          return new Promise(resolve => t.step_timeout(resolve, 5));
        }});
      });

      i.contentWindow.navigation.onnavigatesuccess = t.unreached_func("navigatesuccess must not fire");

      i.contentWindow.navigation.onnavigateerror = t.step_func(e => {
        assert_false(onnavigateerror_called);
        onnavigateerror_called = true;
        assert_equals(e.filename, location.href);
        assert_greater_than(e.lineno, 0);
        assert_greater_than(e.colno, 0);

        assertCommittedFulfillsFinishedRejectsExactly(t, result, iWindow.navigation.currentEntry, e.error, iWindow, iDOMException, iNavigationHistoryEntry).then(
          () => t.done(),
          t.step_func(err => { throw err; })
        );
      });

      result = i.contentWindow.navigation.traverseTo(key);
    }));
  });
}, "Detach a window between when a traverseTo() fires navigate and navigatesuccess");
</script>