Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/localstorage/"; |
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 | switch (event.data) |
michael@0 | 14 | { |
michael@0 | 15 | // Indication of the frame onload event |
michael@0 | 16 | case "frame loaded": |
michael@0 | 17 | if (--slaveLoadsPending) |
michael@0 | 18 | break; |
michael@0 | 19 | |
michael@0 | 20 | // Just fall through... |
michael@0 | 21 | |
michael@0 | 22 | // Indication of successfully finished step of a test |
michael@0 | 23 | case "perf": |
michael@0 | 24 | if (event.data == "perf") |
michael@0 | 25 | doStep(); |
michael@0 | 26 | |
michael@0 | 27 | slave.postMessage("step", slaveOrigin); |
michael@0 | 28 | break; |
michael@0 | 29 | |
michael@0 | 30 | // Indication of all test parts finish (from any of the frames) |
michael@0 | 31 | case "done": |
michael@0 | 32 | localStorage.clear(); |
michael@0 | 33 | slaveLoadsPending = 1; |
michael@0 | 34 | doNextTest(); |
michael@0 | 35 | break; |
michael@0 | 36 | |
michael@0 | 37 | // Any other message indicates error or succes message of a test |
michael@0 | 38 | default: |
michael@0 | 39 | SimpleTest.ok(!event.data.match(failureRegExp), event.data); |
michael@0 | 40 | break; |
michael@0 | 41 | } |
michael@0 | 42 | } |