summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/return-value/navigate-file-url.html
blob: 138f6ffc124355ee9aa343e4b96097bfd0b9626f (plain)
1
2
3
4
5
6
7
8
9
10
<!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 => {
  await assertBothRejectDOM(t, navigation.navigate("file://"), "AbortError");
}, "navigate() to a file: URL");
</script>