summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html
blob: 42e4fa47867210c14bc56fb67d66f544ddd111fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="/common/utils.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="../resources/utils.js"></script>
<script src="resources/utils.js"></script>

<body>
<script>
setup(() => assertSpeculationRulesIsSupported());

promise_test(async t => {
  const {tryToActivate, getNetworkRequestCount} =
      await create_prerendered_page(t, {}, {prefetch: true}, {});

  assert_equals(await tryToActivate(), 'activated');
  assert_equals(await getNetworkRequestCount(), '1', 'Network request count');
}, "Prerender navigation requests should use prefetched results");
</script>