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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/console/console-eval-undefined-override-expected.txt

Issue 2284123002: [DevTools] Format console.log(new Error()) same as console.log(new Error().stack) (Closed)
Patch Set: removed elipsis 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 something in console won't crash the browser if undefined value is overriden. The test passes if it doesn't crash. Bug 64155. 1 Tests that evaluating something in console won't crash the browser if undefined value is overriden. The test passes if it doesn't crash. Bug 64155.
2 2
3 var x = {a:1}; x.self = x; undefined = x; 3 var x = {a:1}; x.self = x; undefined = x;
4 Object {a: 1, self: Object} 4 Object {a: 1, self: Object}
5 unknownVar 5 unknownVar
6 VM:1 Uncaught ReferenceError: unknownVar is not defined(…) 6 VM:1 Uncaught ReferenceError: unknownVar is not defined
7 (anonymous function) @ VM:1 7 (anonymous function) @ VM:1
8 8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698