Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / console / console-eval-throw-expected.txt
1 Tests that evaluating 'throw undefined|1|string|object|Error' in the console won't crash the browser and correctly reported. Bug 59611.
2
3
4 Running: testThrowUndefined
5 throw undefined
6 Uncaught undefined VM:2
7
8 Running: testThrowNumber
9 throw 1
10 Uncaught 1 VM:2
11
12 Running: testThrowString
13 throw 'asdf'
14 Uncaught asdf VM:2
15
16 Running: testThrowObject
17 throw {a:42}
18 Uncaught Object {a: 42} VM:2
19
20 Running: testThrowError
21 throw new Error('asdf')
22 Uncaught Error: asdf VM:2
23