| OLD | NEW |
| 1 CONSOLE WARNING: 'KeyboardEvent.keyIdentifier' is deprecated and will be removed
in M53, around September 2016. See https://www.chromestatus.com/features/531606
5118650368 for more details. |
| 1 This tests the init functions for all the event DOM classes that have them. | 2 This tests the init functions for all the event DOM classes that have them. |
| 2 | 3 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 5 |
| 5 | 6 |
| 6 PASS testInitEvent('', '"a", false, false').type is 'a' | 7 PASS testInitEvent('', '"a", false, false').type is 'a' |
| 7 PASS testInitEvent('', 'null, false, false').type is 'null' | 8 PASS testInitEvent('', 'null, false, false').type is 'null' |
| 8 PASS testInitEvent('', '"a", false, false').bubbles is false | 9 PASS testInitEvent('', '"a", false, false').bubbles is false |
| 9 PASS testInitEvent('', '"a", true, false').bubbles is true | 10 PASS testInitEvent('', '"a", true, false').bubbles is true |
| 10 PASS testInitEvent('', '"a", false, false').cancelable is false | 11 PASS testInitEvent('', '"a", false, false').cancelable is false |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 PASS testInitEvent('UI', '"a", false, false, window, 1001').cancelable is false | 133 PASS testInitEvent('UI', '"a", false, false, window, 1001').cancelable is false |
| 133 PASS testInitEvent('UI', '"a", false, true, window, 1001').cancelable is true | 134 PASS testInitEvent('UI', '"a", false, true, window, 1001').cancelable is true |
| 134 PASS testInitEvent('UI', '"a", false, false, window, 1001').view is window | 135 PASS testInitEvent('UI', '"a", false, false, window, 1001').view is window |
| 135 PASS testInitEvent('UI', '"a", false, false, null, 1001').view is null | 136 PASS testInitEvent('UI', '"a", false, false, null, 1001').view is null |
| 136 PASS testInitEvent('UI', '"a", false, false, window, 1001').detail is 1001 | 137 PASS testInitEvent('UI', '"a", false, false, window, 1001').detail is 1001 |
| 137 PASS testInitEvent('UI', '"a", false, false, window, 1001').which is 0 | 138 PASS testInitEvent('UI', '"a", false, false, window, 1001').which is 0 |
| 138 PASS successfullyParsed is true | 139 PASS successfullyParsed is true |
| 139 | 140 |
| 140 TEST COMPLETE | 141 TEST COMPLETE |
| 141 | 142 |
| OLD | NEW |