| 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
|
|
|
|
|