Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor-expected.txt

Issue 1932293002: Deprecate KeyboardEvent.keyIdentifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust layout tests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 constructor for the KeyboardEvent DOM class. 2 This tests the constructor for the KeyboardEvent DOM class.
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 new KeyboardEvent('eventType').bubbles is false 7 PASS new KeyboardEvent('eventType').bubbles is false
7 PASS new KeyboardEvent('eventType').cancelable is false 8 PASS new KeyboardEvent('eventType').cancelable is false
8 PASS new KeyboardEvent('eventType').view is null 9 PASS new KeyboardEvent('eventType').view is null
9 PASS new KeyboardEvent('eventType').detail is 0 10 PASS new KeyboardEvent('eventType').detail is 0
10 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
136 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
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 }).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
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 }).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
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 }).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
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 }).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
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 }).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
142 PASS successfullyParsed is true 143 PASS successfullyParsed is true
143 144
144 TEST COMPLETE 145 TEST COMPLETE
145 146
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698