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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js

Issue 2953663003: [DevTools] Migrate inspector-protocol/{timeline,worker} tests to new harness (Closed)
Patch Set: addressed comments Created 3 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
OLDNEW
(Empty)
1 function foo()
2 {
3 throw new Error();
4 }
5
6 function boo1()
7 {
8 foo();
9 }
10
11 function boo2()
12 {
13 foo();
14 }
15
16 onmessage = function(event) {
17 if (event.data === 42)
18 boo1();
19 else
20 boo2();
21 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698