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

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

Issue 2099213002: Web MIDI: prepare to deprecate MIDIMessageEvent::receivedTime (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more test expectation Created 4 years, 5 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 INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
2 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
3 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
4 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
5 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
6 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
7 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
8 CONSOLE INFO: line 1: receivedTime is deprecated and will be removed from MIDIMe ssageEvent soon. Use timeStamp instead.
1 This tests the constructor for the MIDIMessageEvent DOM class. 9 This tests the constructor for the MIDIMessageEvent DOM class.
2 10
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 11 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 12
5 13
6 PASS new MIDIMessageEvent('eventType').bubbles is false 14 PASS new MIDIMessageEvent('eventType').bubbles is false
7 PASS new MIDIMessageEvent('eventType').cancelable is false 15 PASS new MIDIMessageEvent('eventType').cancelable is false
8 PASS new MIDIMessageEvent('eventType').receivedTime is 0.0 16 PASS new MIDIMessageEvent('eventType').receivedTime is 0.0
9 PASS new MIDIMessageEvent('eventType').data is null 17 PASS new MIDIMessageEvent('eventType').data is null
10 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false 18 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false
11 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true 19 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true
12 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e 20 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e
13 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true 21 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true
14 PASS new MIDIMessageEvent('eventType', { receivedTime: 3.14 }).receivedTime is 3 .14 22 PASS new MIDIMessageEvent('eventType', { receivedTime: 3.14 }).receivedTime is 3 .14
15 PASS new MIDIMessageEvent('eventType', { data: data }).data == '0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0' is true 23 PASS new MIDIMessageEvent('eventType', { data: data }).data == '0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0' is true
16 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).bubbles is true 24 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).bubbles is true
17 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).cancelable is true 25 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).cancelable is true
18 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).receivedTime is 1976.0501 26 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).receivedTime is 1976.0501
19 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).data == '0,0,0' is true 27 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).data == '0,0,0' is true
20 PASS successfullyParsed is true 28 PASS successfullyParsed is true
21 29
22 TEST COMPLETE 30 TEST COMPLETE
23 31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698