chromium/third_party/blink/web_tests/wpt_internal/fenced_frame/resources/unreached.https.html

<!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>