summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/return-value/navigate-intercept.html
blob: a9946c71ff3a88e9f3dc46f12a7d0d3059659589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>

<script>
promise_test(async t => {
  navigation.onnavigate = e => e.intercept({ handler: () => Promise.resolve({ abc: 'def' }) });

  const result = navigation.navigate("#1");

  await assertBothFulfill(t, result, navigation.currentEntry);
  assert_equals((new URL(navigation.currentEntry.url)).hash, "#1");
}, "navigate() and intercept() with a fulfilled promise");
</script>