summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/jsapi/functions/resources/incumbent-incumbent.html
blob: 5e84f65a084e685e071792fb0e0c405c63142e8e (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Incumbent page used as a test helper</title>

<script src="/wasm/jsapi/wasm-module-builder.js"></script>
<script src="/wasm/jsapi/functions/helper.js"></script>

<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 = (...args) => {
  const runWindowPostMessage = current.contentWindow.postMessage.bind(relevant.contentWindow, ...args);
  call_later(runWindowPostMessage);
};
</script>