OLD | NEW |
1 PASS window.event.type is "error" | 1 PASS window.event.type is "error" |
2 PASS onerrorMessage is window.event.message | 2 PASS onerrorMessage is window.event.message |
3 PASS stripURL(onerrorURL) is stripURL(window.event.filename) | 3 PASS stripURL(onerrorURL) is stripURL(window.event.filename) |
4 PASS onerrorLine is window.event.lineno | 4 PASS onerrorLine is window.event.lineno |
5 PASS window.event.column is undefined. | 5 PASS onerrorColumn is window.event.colno |
6 PASS successfullyParsed is true | 6 PASS successfullyParsed is true |
7 | 7 |
8 TEST COMPLETE | 8 TEST COMPLETE |
9 This tests that when 'window.onerror' handler is called, 'window.event' is the c
orresponding ErrorEvent object. | 9 This tests that when 'window.onerror' handler is called, 'window.event' is the c
orresponding ErrorEvent object. |
OLD | NEW |