blob: 8cfc78ac6e93ebff471563236ac6067e00405e20 (
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
27
28
29
30
31
|
<!DOCTYPE html>
<title>navigator.subApp API test</title>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="/speculation-rules/prerender/resources/utils.js"></script>
<body>
<script>
setup(() => assertSpeculationRulesIsSupported());
promise_test(async () => {
const uid = token();
const bc = new PrerenderChannel('prerender-channel', uid);
const gotMessage = new Promise(resolve => {
bc.addEventListener('message', e => {
resolve(e.data);
}, {
once: true
});
});
startPrerendering(`resources/subapp.html?uid=${uid}`);
const result = await gotMessage;
assert_equals(result, 'InvalidStateError');
}, 'prerendering pages should not be able to access subapp API.');
</script>
</body>
|