dom/tests/mochitest/sessionstorage/interOriginTest.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 var slaveLoadsPending = 1;
michael@0 2
michael@0 3 var slaveOrigin = "";
michael@0 4 var slave = null;
michael@0 5
michael@0 6 var failureRegExp = new RegExp("^FAILURE");
michael@0 7 const slavePath = "/tests/dom/tests/mochitest/sessionstorage/";
michael@0 8
michael@0 9 window.addEventListener("message", onMessageReceived, false);
michael@0 10
michael@0 11 function onMessageReceived(event)
michael@0 12 {
michael@0 13 //alert("master got event: "+event.data);
michael@0 14 switch (event.data)
michael@0 15 {
michael@0 16 // Indication of the frame onload event
michael@0 17 case "frame loaded":
michael@0 18 if (--slaveLoadsPending)
michael@0 19 break;
michael@0 20
michael@0 21 // Just fall through...
michael@0 22
michael@0 23 // Indication of successfully finished step of a test
michael@0 24 case "perf":
michael@0 25 // We called doStep before the frame was load
michael@0 26 if (event.data == "perf")
michael@0 27 doStep();
michael@0 28
michael@0 29 slave.postMessage("step", slaveOrigin);
michael@0 30 break;
michael@0 31
michael@0 32 // Indication of all test parts finish (from any of the frames)
michael@0 33 case "done":
michael@0 34 sessionStorage.clear();
michael@0 35 slaveLoadsPending = 1;
michael@0 36 doNextTest();
michael@0 37 break;
michael@0 38
michael@0 39 // Any other message indicates error or succes message of a test
michael@0 40 default:
michael@0 41 SimpleTest.ok(!event.data.match(failureRegExp), event.data);
michael@0 42 break;
michael@0 43 }
michael@0 44 }

mercurial