Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 self.postMessage("Test started."); | |
| 2 // The test will create timeouts in the following order | |
| 3 // on first message - 1s, 2s. | |
| 4 // on second message - 2s, 1s. | |
| 5 // on third and final message - 3s, 2s, 1s. | |
| 6 // if the timeouts in order then the test is PASS. | |
| 7 self.addEventListener('message', function(e) { | |
| 8 if(e.data == "TS1") { | |
| 9 setTimeout(function () { postMessage(1); }, 100); | |
|
jochen (gone - plz use gerrit)
2014/09/17 14:47:39
can you use lower timeouts 5, 10, 15? so the test
Mayur Kankanwadi
2014/09/18 14:34:25
Done.
| |
| 10 setTimeout(function () { postMessage(2); }, 200); | |
| 11 setTimeout(function () { postMessage(3); }, 300); | |
| 12 } | |
| 13 else if(e.data == "TS2") { | |
| 14 setTimeout(function () { postMessage(3); postMessage("DONE"); }, 300); | |
| 15 setTimeout(function () { postMessage(2); }, 200); | |
| 16 setTimeout(function () { postMessage(1); }, 100); | |
| 17 } | |
| 18 }, false); | |
| OLD | NEW |