Upstream version 10.39.225.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 VM:2 Uncaught undefined
7
8 Running: testThrowNumber
9 throw 1
10 VM:2 Uncaught 1
11
12 Running: testThrowString
13 throw 'asdf'
14 VM:2 Uncaught asdf
15
16 Running: testThrowObject
17 throw {a:42}
18 VM:2 Uncaught Object {a: 42}
19
20 Running: testThrowError
21 throw new Error('asdf')
22 VM:2 Uncaught Error: asdf
23