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

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

Issue 369333002: DevTools: Added error message when the command is invoked from the console with exception (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add-evaluate-exception-details
Patch Set: Created 6 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 Tests that evaluating an expression with an exception in the console provide cor rect exception information.
2
3 function foo()
4 {
5 throw {a:239};
6 }
7 function boo()
8 {
9 foo();
10 }
11 boo();
12 Uncaught Object {a: 239} VM:4
13 call frame:foo at :4
14 call frame:boo at :8
15 call frame: at :10
16
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698