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

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

Issue 2151273003: [DevTools] Move browser logging from Console domain to Log domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internals-method
Patch Set: protocol improvements Created 4 years, 5 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