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

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

Issue 2489033005: Web MIDI: deprecate MIDIMessageEvent.receivedTime (Closed)
Patch Set: expectation for virtual Created 4 years, 1 month 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: line 1: MIDIMessageEvent.receivedTime is deprecated and will be removed in M56, around January 2017. See https://www.chromestatus.com/features/ 5665772797952000 for more details.
2 This tests the constructor for the MIDIMessageEvent DOM class. 1 This tests the constructor for the MIDIMessageEvent DOM class.
3 2
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 4
6 5
7 PASS new MIDIMessageEvent('eventType').bubbles is false 6 PASS new MIDIMessageEvent('eventType').bubbles is false
8 PASS new MIDIMessageEvent('eventType').cancelable is false 7 PASS new MIDIMessageEvent('eventType').cancelable is false
9 PASS new MIDIMessageEvent('eventType').receivedTime is 0.0
10 PASS new MIDIMessageEvent('eventType').data is null 8 PASS new MIDIMessageEvent('eventType').data is null
11 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false 9 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false
12 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true 10 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true
13 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e 11 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e
14 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true 12 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true
15 PASS new MIDIMessageEvent('eventType', { receivedTime: 3.14 }).receivedTime is 3 .14
16 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 13 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
17 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).bubbles is true 14 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).bubbles is true
18 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).cancelable is true 15 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).cancelable is true
19 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).receivedTime is 1976.0501 16 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).data == '0,0,0' is true
20 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receiv edTime: 1976.0501, data: data }).data == '0,0,0' is true
21 PASS successfullyParsed is true 17 PASS successfullyParsed is true
22 18
23 TEST COMPLETE 19 TEST COMPLETE
24 20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698