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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 var message_id = 1;
2 onmessage = function(event) {
3 doWork();
4 };
5
6 function doWork() {
7 postMessage("Message #" + message_id++);
8
9 var ts = Date.now();
10 while (true) {
11 if (Date.now() - ts > 1000) {
12 ts = Date.now();
13 postMessage("Message #" + message_id++);
14 }
15 }
16 }
17
OLDNEW
« 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