summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/resources/cross-origin-iframe.html
blob: 10a3b62f0ec36c485da4076039eed24f4c39eb8f (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<script src="/common/utils.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="/speculation-rules/prerender/resources/utils.js"></script>
<script src="/speculation-rules/prerender/resources/deferred-promise-utils.js"></script>
<body>
<script>

async function main() {
  const crossOriginUrl =
      new URL('cross-origin-iframe-src.html',
              get_host_info()['HTTPS_REMOTE_ORIGIN'] +
                  window.location.pathname);

  // Start loading a cross-origin iframe. The iframe messages us with the
  // value of its document.prerendering, which should be false since load
  // is delayed until after activation.
  const crossOriginIframe = document.createElement('iframe');

  const gotMessage = new Promise((resolve, reject) => {
    window.addEventListener('message', (e) => {
     if (e.data == 'document.prerendering: false')
       resolve();
     else
       reject('bad message: ' + e.data);
    });
  });

  crossOriginIframe.src = crossOriginUrl.href;
  document.body.appendChild(crossOriginIframe);

  // To give the test a chance to fail by giving enough time if it loads the
  // cross-origin iframe instead of deferring, wait for a same-origin iframe to
  // load before proceeding with the test.
  await createFrame('empty.html');

  // Start the event collector to trigger activation.
  const prerenderEventCollector = new PrerenderEventCollector();
  prerenderEventCollector.start(gotMessage,
                                'iframe loaded');

}

// The main test page (cross-origin-iframe.https.html) loads the initiator
// page, then the initiator page will prerender itself with the
// `prerendering` parameter.
const params = new URLSearchParams(location.search);
if (!params.has('prerendering')) {
  const rule_extras = {'target_hint': getTargetHint()};
  loadInitiatorPage(rule_extras);
} else {
  main();
}
</script>
</body>