OLD | NEW |
---|---|
(Empty) | |
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 | |
vsevik
2014/07/18 14:41:06
We should clear messages between tests in test sui
kozyatinskiy1
2014/07/18 16:10:08
Done.
| |
5 throw undefined | |
6 Uncaught undefined VM:2 | |
7 | |
8 Running: testThrowNumber | |
9 throw undefined | |
10 Uncaught undefined VM:2 | |
11 throw 1 | |
12 Uncaught 1 VM:2 | |
13 | |
14 Running: testThrowString | |
15 throw undefined | |
16 Uncaught undefined VM:2 | |
17 throw 1 | |
18 Uncaught 1 VM:2 | |
19 throw 'asdf' | |
20 Uncaught asdf VM:2 | |
21 | |
22 Running: testThrowObject | |
23 throw undefined | |
24 Uncaught undefined VM:2 | |
25 throw 1 | |
26 Uncaught 1 VM:2 | |
27 throw 'asdf' | |
28 Uncaught asdf VM:2 | |
29 throw {a:42} | |
30 Uncaught Object {a: 42} VM:2 | |
31 | |
32 Running: testThrowError | |
33 throw undefined | |
34 Uncaught undefined VM:2 | |
35 throw 1 | |
36 Uncaught 1 VM:2 | |
37 throw 'asdf' | |
38 Uncaught asdf VM:2 | |
39 throw {a:42} | |
40 Uncaught Object {a: 42} VM:2 | |
41 throw new Error('asdf') | |
42 Uncaught Error: asdf VM:2 | |
43 | |
OLD | NEW |