OLD | NEW |
| 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. |
1 This tests the constructor for the MIDIMessageEvent DOM class. | 2 This tests the constructor for the MIDIMessageEvent 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 MIDIMessageEvent('eventType').bubbles is false | 7 PASS new MIDIMessageEvent('eventType').bubbles is false |
7 PASS new MIDIMessageEvent('eventType').cancelable is false | 8 PASS new MIDIMessageEvent('eventType').cancelable is false |
8 PASS new MIDIMessageEvent('eventType').receivedTime is 0.0 | 9 PASS new MIDIMessageEvent('eventType').receivedTime is 0.0 |
9 PASS new MIDIMessageEvent('eventType').data is null | 10 PASS new MIDIMessageEvent('eventType').data is null |
10 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false | 11 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false |
11 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true | 12 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true |
12 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals
e | 13 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals
e |
13 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true | 14 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true |
14 PASS new MIDIMessageEvent('eventType', { receivedTime: 3.14 }).receivedTime is 3
.14 | 15 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 | 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 |
16 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 }).bubbles is true |
17 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 }).cancelable is true |
18 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 }).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 | 20 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 | 21 PASS successfullyParsed is true |
21 | 22 |
22 TEST COMPLETE | 23 TEST COMPLETE |
23 | 24 |
OLD | NEW |