Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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 | } |