| OLD | NEW |
| 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. | 1 CONSOLE WARNING: line 1: 'KeyboardEvent.keyIdentifier' is deprecated and will be
removed in M54, around October 2016. See https://www.chromestatus.com/features/
5316065118650368 for more details. |
| 2 This tests the constructor for the KeyboardEvent DOM class. | 2 This tests the constructor for the KeyboardEvent DOM class. |
| 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 new KeyboardEvent('eventType').bubbles is false | 7 PASS new KeyboardEvent('eventType').bubbles is false |
| 8 PASS new KeyboardEvent('eventType').cancelable is false | 8 PASS new KeyboardEvent('eventType').cancelable is false |
| 9 PASS new KeyboardEvent('eventType').view is null | 9 PASS new KeyboardEvent('eventType').view is null |
| 10 PASS new KeyboardEvent('eventType').detail is 0 | 10 PASS new KeyboardEvent('eventType').detail is 0 |
| 11 PASS new KeyboardEvent('eventType').keyIdentifier is "" | 11 PASS new KeyboardEvent('eventType').keyIdentifier is "" |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).location is 222 | 137 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).location is 222 |
| 138 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).ctrlKey is true | 138 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).ctrlKey is true |
| 139 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).altKey is true | 139 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).altKey is true |
| 140 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).shiftKey is true | 140 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).shiftKey is true |
| 141 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).metaKey is true | 141 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).metaKey is true |
| 142 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).repeat is true | 142 PASS new KeyboardEvent('eventType', { bubbles: true, cancelable: true, view: win
dow, detail: 111, keyIdentifier: 'chocolate', code: 'chocode', key: 'chokey', lo
cation: 222, ctrlKey: true, altKey: true, shiftKey: true, metaKey: true, repeat:
true }).repeat is true |
| 143 PASS successfullyParsed is true | 143 PASS successfullyParsed is true |
| 144 | 144 |
| 145 TEST COMPLETE | 145 TEST COMPLETE |
| 146 | 146 |
| OLD | NEW |