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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-eval-exception-report-expected.txt

Issue 2270033003: DevTools: include traces when exporting console log via 'Save as' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: take out post-lgtm repeat logic Created 4 years, 3 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 that evaluating an expression with an exception in the console provide cor rect exception information. 1 Tests that evaluating an expression with an exception in the console provide cor rect exception information.
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:3 Uncaught Object {a: 239}foo @ VM:3boo @ VM:7(anonymous) @ VM:9 12 VM:3 Uncaught Object {a: 239}
13 foo @ VM:3
14 boo @ VM:7
15 (anonymous) @ VM:9
13 call frame:foo at :2 16 call frame:foo at :2
14 call frame:boo at :6 17 call frame:boo at :6
15 call frame: at :8 18 call frame: at :8
16 19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698