summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/processing-model-2/integration-with-the-javascript-job-queue/resources/promise-job-incumbent-incumbent.html
blob: 57dd5dff108ecf7bf336d50aec75370ecfc54c73 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Incumbent page used as a test helper</title>

<iframe src="relevant/relevant.html" id="r"></iframe>
<iframe src="current/current.html" id="c"></iframe>

<script>
  const relevant = document.querySelector("#r");
  const current = document.querySelector("#c");

  window.runWindowPostMessageVeryIndirectly = (...args) => {
    return current.contentWindow.postMessage.call(relevant.contentWindow, ...args);
  };

  // This tests the backup incumbent settings object stack scenario, by avoiding putting user code on the stack.
  window.runWindowPostMessageVeryIndirectlyWithNoUserCode = (promise, promiseMethod, ...args) => {
    const runWindowPostMessage = current.contentWindow.postMessage.bind(relevant.contentWindow, ...args);
    promise[promiseMethod](runWindowPostMessage);
  };

  window.resolveThenableThatRunsWindowPostMessageVeryIndirectlyWithNoUserCode = (...args) => {
    Promise.resolve({
      then: current.contentWindow.postMessage.bind(relevant.contentWindow, ...args)
    });
  };
</script>