summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/ordering-and-transition/transition-finished-mark-as-handled.html
blob: fa38b822166ee47664ab2febfa02d61270e3f6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<script>
async_test(t => {
  navigation.addEventListener("navigate", e => {
    e.intercept({ handler: () => Promise.reject(new Error("oh no!")) });
  });

  window.onunhandledrejection = t.unreached_func("unhandledrejection must not fire");

  location.href = "?1";

  // Make sure to trigger the getter to ensure the promise materializes!
  navigation.transition.finished;

  t.step_timeout(() => t.done(), 10);
}, "navigation.transition.finished must not trigger unhandled rejections");
</script>