Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: LayoutTests/fast/workers/resources/worker-timeout-order.js

Issue 563203002: [Blink-WebWorkers] WorkerSharedTimer cancels extra delayed tasks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added layout tests. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-timeout-order.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/workers/resources/worker-timeout-order.js
diff --git a/LayoutTests/fast/workers/resources/worker-timeout-order.js b/LayoutTests/fast/workers/resources/worker-timeout-order.js
new file mode 100644
index 0000000000000000000000000000000000000000..a8c1367d8045fea5c3c7fee71c8755bc78dcba0c
--- /dev/null
+++ b/LayoutTests/fast/workers/resources/worker-timeout-order.js
@@ -0,0 +1,18 @@
+self.postMessage("Test started.");
+// The test will create timeouts in the following order
+// on first message - 1s, 2s.
+// on second message - 2s, 1s.
+// on third and final message - 3s, 2s, 1s.
+// if the timeouts in order then the test is PASS.
+self.addEventListener('message', function(e) {
+ if(e.data == "TS1") {
+ 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.
+ setTimeout(function () { postMessage(2); }, 200);
+ setTimeout(function () { postMessage(3); }, 300);
+ }
+ else if(e.data == "TS2") {
+ setTimeout(function () { postMessage(3); postMessage("DONE"); }, 300);
+ setTimeout(function () { postMessage(2); }, 200);
+ setTimeout(function () { postMessage(1); }, 100);
+ }
+}, false);
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-timeout-order.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698