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

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

Issue 743153002: [DevTools] Show stack trace for exceptions in dedicated workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@worker-capture-stack
Patch Set: Rebased Created 6 years 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 function boo()
6 {
7 foo();
8 }
9
10 onmessage = function(event) {
11 boo();
12 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698