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 CONSOLE WARNING: line 1: 'KeyboardEvent.keyIdentifier' is deprecated and will be
removed in M53, around September 2016. See https://www.chromestatus.com/feature
s/5316065118650368 for more details. |
2 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. |
3 | 3 |
4 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
". |
5 | 5 |
6 | 6 |
7 PASS testInitEvent('', '"a", false, false').type is 'a' | 7 PASS testInitEvent('', '"a", false, false').type is 'a' |
8 PASS testInitEvent('', 'null, false, false').type is 'null' | 8 PASS testInitEvent('', 'null, false, false').type is 'null' |
9 PASS testInitEvent('', '"a", false, false').bubbles is false | 9 PASS testInitEvent('', '"a", false, false').bubbles is false |
10 PASS testInitEvent('', '"a", true, false').bubbles is true | 10 PASS testInitEvent('', '"a", true, false').bubbles is true |
11 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... |
133 PASS testInitEvent('UI', '"a", false, false, window, 1001').cancelable is false | 133 PASS testInitEvent('UI', '"a", false, false, window, 1001').cancelable is false |
134 PASS testInitEvent('UI', '"a", false, true, window, 1001').cancelable is true | 134 PASS testInitEvent('UI', '"a", false, true, window, 1001').cancelable is true |
135 PASS testInitEvent('UI', '"a", false, false, window, 1001').view is window | 135 PASS testInitEvent('UI', '"a", false, false, window, 1001').view is window |
136 PASS testInitEvent('UI', '"a", false, false, null, 1001').view is null | 136 PASS testInitEvent('UI', '"a", false, false, null, 1001').view is null |
137 PASS testInitEvent('UI', '"a", false, false, window, 1001').detail is 1001 | 137 PASS testInitEvent('UI', '"a", false, false, window, 1001').detail is 1001 |
138 PASS testInitEvent('UI', '"a", false, false, window, 1001').which is 0 | 138 PASS testInitEvent('UI', '"a", false, false, window, 1001').which is 0 |
139 PASS successfullyParsed is true | 139 PASS successfullyParsed is true |
140 | 140 |
141 TEST COMPLETE | 141 TEST COMPLETE |
142 | 142 |
OLD | NEW |