summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html')
-rw-r--r--testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html b/testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html
new file mode 100644
index 0000000000..2a1553b3d9
--- /dev/null
+++ b/testing/web-platform/tests/speculation-rules/prerender/prefetch.https.html
@@ -0,0 +1,21 @@
+<!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="/speculation-rules/prerender/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>
+</body>