summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/common.js
blob: df6005cfe47dec261ddc8fd969cb2ae02fb39ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
window.onload = function () {
  // We are the parent. Let's load the test.
  if (parent == this || !location.search.includes("worklet_iframe")) {
    SimpleTest.waitForExplicitFinish();

    configureTest().then(() => {
      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();
};