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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/worker-eval-contains-stack-expected.txt

Issue 1617393002: [DevTools] Not use with statement for evaluated console command (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix $1-$4, $_ Created 4 years, 11 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
1 Tests exception message from eval on worker context in console contains stack tr ace. 1 Tests exception message from eval on worker context in console contains stack tr ace.
2 2
3 function foo() 3 function foo()
4 { 4 {
5 throw {a:239}; 5 throw {a:239};
6 } 6 }
7 function boo() 7 function boo()
8 { 8 {
9 foo(); 9 foo();
10 } 10 }
11 boo(); 11 boo();
12 VM:4 Uncaught Object {a: 239}foo @ VM:4boo @ VM:8(anonymous function) @ VM:10 12 VM:3 Uncaught Object {a: 239}foo @ VM:3boo @ VM:7(anonymous function) @ VM:9
13 13
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698