summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html')
-rw-r--r--testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html b/testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html
new file mode 100644
index 0000000000..8fc4433c0b
--- /dev/null
+++ b/testing/web-platform/tests/speculation-rules/prerender/resources/subapp.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/speculation-rules/prerender/resources/utils.js"></script>
+<script>
+
+assert_true(document.prerendering);
+
+const params = new URLSearchParams(location.search);
+const uid = params.get('uid');
+
+async function listSubApps() {
+ const bc = new PrerenderChannel('prerender-channel', uid);
+ try {
+ const _ = await navigator.subApps.list();
+ bc.postMessage('unexpected success');
+ } catch (err){
+ bc.postMessage(err.name);
+ } finally {
+ bc.close();
+ }
+}
+
+listSubApps();
+
+</script>