summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/common.js
blob: 3841a5f73b4d1cb643fed4a2c72376631b3fc3b4 (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
window.onload = async function () {
  // We are the parent. Let's load the test.
  if (parent == this || !location.search.includes("worklet_iframe")) {
    SimpleTest.waitForExplicitFinish();

    // configureTest is optional
    if (window.configureTest) {
      await window.configureTest();
    }

    var iframe = document.createElement("iframe");
    iframe.src = location.href + "?worklet_iframe";
    document.body.appendChild(iframe);

    return;
  }

  // Here we are in the iframe.
  window.SimpleTest = parent.SimpleTest;
  window.is = parent.is;
  window.isnot = parent.isnot;
  window.ok = parent.ok;
  window.info = parent.info;

  runTestInIframe();
};