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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/console/console-eval-exception-report-expected.txt
diff --git a/LayoutTests/inspector/console/console-eval-exception-report-expected.txt b/LayoutTests/inspector/console/console-eval-exception-report-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..019593817b3fc700e7fff16e3f8ca6d6ce97c1dc
--- /dev/null
+++ b/LayoutTests/inspector/console/console-eval-exception-report-expected.txt
@@ -0,0 +1,22 @@
+Tests that evaluating an expression with an exception in the console provide correct exception information.
+
+ function foo()
+ {
+ throw {a:239};
+ }
+ function boo()
+ {
+ foo();
+ }
+ boo();
+Uncaught Object {a: 239} VM:4
+frame function name:foo
+frame line number:4
+frame url:
+frame function name:boo
+frame line number:8
+frame url:
+frame function name:
+frame line number:10
+frame url:
+

Powered by Google App Engine
This is Rietveld 408576698