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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt

Issue 1617393002: [DevTools] Not use with statement for evaluated console command (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix $1-$4, $_ Created 4 years, 11 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/console-eval-throw-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt
index bf6887cb1ba6c697d71d10b708d8f88b0f6d1666..b055b9733cfbac75606238426d9cb739a0a8c088 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt
@@ -3,26 +3,26 @@ Tests that evaluating 'throw undefined|1|string|object|Error' in the console won
Running: testThrowUndefined
throw undefined
- VM:2 Uncaught undefined
-(anonymous function) @ VM:2
+ VM:1 Uncaught undefined
+(anonymous function) @ VM:1
Running: testThrowNumber
throw 1
- VM:2 Uncaught 1
-(anonymous function) @ VM:2
+ VM:1 Uncaught 1
+(anonymous function) @ VM:1
Running: testThrowString
throw 'asdf'
- VM:2 Uncaught asdf
-(anonymous function) @ VM:2
+ VM:1 Uncaught asdf
+(anonymous function) @ VM:1
Running: testThrowObject
throw {a:42}
- VM:2 Uncaught Object {a: 42}
-(anonymous function) @ VM:2
+ VM:1 Uncaught Object {a: 42}
+(anonymous function) @ VM:1
Running: testThrowError
throw new Error('asdf')
- VM:2 Uncaught Error: asdf(…)
-(anonymous function) @ VM:2
+ VM:1 Uncaught Error: asdf(…)
+(anonymous function) @ VM:1

Powered by Google App Engine
This is Rietveld 408576698