summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/sessionstorage/interOriginSlave.js
blob: c4d423154228faa597ba6968fd6c472da7e457e3 (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
function postMsg(message) {
  opener.postMessage(message, "http://mochi.test:8888");
}

window.addEventListener("message", onMessageReceived);

function onMessageReceived(event) {
  //alert("slave got event: "+event.data);
  if (event.data == "step") {
    if (doStep()) {
      postMsg("perf");
    }

    return;
  }

  postMsg("Invalid message");
}

function ok(a, message) {
  if (!a) {
    postMsg("FAILURE: " + message);
  } else {
    postMsg(message);
  }
}

function is(a, b, message) {
  if (a != b) {
    postMsg("FAILURE: " + message + ", expected " + b + " got " + a);
  } else {
    postMsg(message + ", expected " + b + " got " + a);
  }
}

function finishTest() {
  sessionStorage.clear();
  postMsg("done");
  return false;
}