blob: 8fc4433c0b00ebc950b53a15ffe1baa32d83fe56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>
|