summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resources/unreached.https.html
blob: bd389ec4fbd5a8f47b83f7c8299d5669890120cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>File used to assert that navigations do not succeed.</title>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="utils.js"></script>
<script src="/common/get-host-info.sub.js"></script>

<body>
<script>
  promise_test(async(t) => {
    assert_unreached('This navigation should not have succeeded.');
  });
</script>
</body>