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

Unified Diff: LayoutTests/inspector-protocol/debugger/resources/dedicated-worker-loop.js

Issue 352103002: Test that DevTools commands can be handled on worker thread when it is in a tight loop (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed comments, added missing file Created 6 years, 6 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 | « LayoutTests/inspector-protocol/debugger/debugger-pause-dedicated-worker-loop-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector-protocol/debugger/resources/dedicated-worker-loop.js
diff --git a/LayoutTests/inspector-protocol/debugger/resources/dedicated-worker-loop.js b/LayoutTests/inspector-protocol/debugger/resources/dedicated-worker-loop.js
new file mode 100644
index 0000000000000000000000000000000000000000..4321980a7053676025dc36345df22add1bead216
--- /dev/null
+++ b/LayoutTests/inspector-protocol/debugger/resources/dedicated-worker-loop.js
@@ -0,0 +1,17 @@
+var message_id = 1;
+onmessage = function(event) {
+ doWork();
+};
+
+function doWork() {
+ postMessage("Message #" + message_id++);
+
+ var ts = Date.now();
+ while (true) {
+ if (Date.now() - ts > 1000) {
+ ts = Date.now();
+ postMessage("Message #" + message_id++);
+ }
+ }
+}
+
« no previous file with comments | « LayoutTests/inspector-protocol/debugger/debugger-pause-dedicated-worker-loop-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698