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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/exception-objects-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: Created 4 years, 4 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: third_party/WebKit/LayoutTests/inspector/console/exception-objects-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/console/exception-objects-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/exception-objects-expected.txt
index 891b5221d8048ac84e7aeafad2355d66f57708a1..16b5a16a13e258bdd45963114b420d7abd797c60 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/exception-objects-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/console/exception-objects-expected.txt
@@ -9,29 +9,44 @@ Tests that expressions have thrown objects.
setTimeout(throwError, 0); undefined
undefined
-foo.js:4 Uncaught Error: error_text(…)throwError @ foo.js:4
+foo.js:4 Uncaught Error: error_text(…)
+throwError @ foo.js:4
throwError();
-foo.js:4 Uncaught Error: error_text(…)throwError @ foo.js:4(anonymous function) @ VM:1
+foo.js:4 Uncaught Error: error_text(…)
+throwError @ foo.js:4
+(anonymous function) @ VM:1
setTimeout(throwObject, 0); undefined
undefined
-foo.js:9 Uncaught Object {a: 42}throwObject @ foo.js:9
+foo.js:9 Uncaught Object {a: 42}
+throwObject @ foo.js:9
throwObject();
-foo.js:9 Uncaught Object {a: 42}throwObject @ foo.js:9(anonymous function) @ VM:1
+foo.js:9 Uncaught Object {a: 42}
+throwObject @ foo.js:9
+(anonymous function) @ VM:1
setTimeout(throwNumber, 0); undefined
undefined
-foo.js:14 Uncaught 42throwNumber @ foo.js:14
+foo.js:14 Uncaught 42
+throwNumber @ foo.js:14
throwNumber();
-foo.js:14 Uncaught 42throwNumber @ foo.js:14(anonymous function) @ VM:1
+foo.js:14 Uncaught 42
+throwNumber @ foo.js:14
+(anonymous function) @ VM:1
setTimeout(rejectWithError, 0); undefined
undefined
-foo.js:19 Uncaught (in promise) Error: promise_error(…)rejectWithError @ foo.js:19
+foo.js:19 Uncaught (in promise) Error: promise_error(…)
+rejectWithError @ foo.js:19
rejectWithError();
undefined
-foo.js:19 Uncaught (in promise) Error: promise_error(…)rejectWithError @ foo.js:19(anonymous function) @ VM:1
+foo.js:19 Uncaught (in promise) Error: promise_error(…)
+rejectWithError @ foo.js:19
+(anonymous function) @ VM:1
setTimeout(rejectWithObject, 0); undefined
undefined
-foo.js:24 Uncaught (in promise) Object {b: 42}rejectWithObject @ foo.js:24
+foo.js:24 Uncaught (in promise) Object {b: 42}
+rejectWithObject @ foo.js:24
rejectWithObject();
undefined
-foo.js:24 Uncaught (in promise) Object {b: 42}rejectWithObject @ foo.js:24(anonymous function) @ VM:1
+foo.js:24 Uncaught (in promise) Object {b: 42}
+rejectWithObject @ foo.js:24
+(anonymous function) @ VM:1

Powered by Google App Engine
This is Rietveld 408576698