OLD | NEW |
1 Tests navigator.requestMIDIAccess. | 1 Tests navigator.requestMIDIAccess. |
2 | 2 |
3 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
". |
4 | 4 |
5 | 5 |
6 PASS requestMIDIAccess() succeeded with access [object MIDIAccess]. | 6 PASS requestMIDIAccess() succeeded with access [object MIDIAccess]. |
7 PASS access.inputs().length is 1 | |
8 PASS access.outputs().length is 1 | |
9 PASS access.sysexEnabled is defined. | 7 PASS access.sysexEnabled is defined. |
10 PASS access.sysexEnabled is false | 8 PASS access.sysexEnabled is false |
11 PASS input attributes are correct | 9 PASS access.inputs.size is 1 |
12 PASS output attributes are correct | 10 PASS input.id is "MockInputID" |
| 11 PASS input.manufacturer is "MockInputManufacturer" |
| 12 PASS input.name is "MockInputName" |
| 13 PASS input.version is "MockInputVersion" |
| 14 PASS inputKey is "MockInputID" |
| 15 PASS entry[0] is inputKey |
| 16 PASS entry[1] is input |
| 17 PASS inputValue is input |
| 18 PASS inputs.has('MockInputID') is true |
| 19 PASS inputs.has('MockOutputID') is false |
| 20 PASS inputs.get('MockInputID') is input |
| 21 PASS inputs.get('MockOutputID') is undefined. |
| 22 PASS output.id is "MockOutputID" |
| 23 PASS output.manufacturer is "MockOutputManufacturer" |
| 24 PASS output.name is "MockOutputName" |
| 25 PASS output.version is "MockOutputVersion" |
| 26 PASS outputKey is "MockOutputID" |
| 27 PASS entry[0] is outputKey |
| 28 PASS entry[1] is output |
| 29 PASS outputValue is output |
| 30 PASS outputs.has('MockOutputID') is true |
| 31 PASS outputs.has('MockInputID') is false |
| 32 PASS outputs.get('MockOutputID') is output |
| 33 PASS outputs.get('MockInputID') is undefined. |
13 PASS a note on message is sent without timestamp | 34 PASS a note on message is sent without timestamp |
14 PASS a note on message is sent with timestamp | 35 PASS a note on message is sent with timestamp |
15 PASS output.send([0xfff, 0x45, 0x7f]) threw exception TypeError: Failed to execu
te 'send' on 'MIDIOutput': The value at index 0 (4095) is greater than 0xFF.. | 36 PASS output.send([0xfff, 0x45, 0x7f]) threw exception TypeError: Failed to execu
te 'send' on 'MIDIOutput': The value at index 0 (4095) is greater than 0xFF.. |
16 PASS output.send([0xf0, 0x45, 0xf7]) threw exception InvalidAccessError: Failed
to execute 'send' on 'MIDIOutput': System exclusive message is not allowed at in
dex 0 (240).. | 37 PASS output.send([0xf0, 0x45, 0xf7]) threw exception InvalidAccessError: Failed
to execute 'send' on 'MIDIOutput': System exclusive message is not allowed at in
dex 0 (240).. |
17 PASS requestMIDIAccess() was correctly blocked for System Exclusive access with
error [object DOMError]. | 38 PASS requestMIDIAccess() was correctly blocked for System Exclusive access with
error [object DOMError]. |
18 PASS successfullyParsed is true | 39 PASS successfullyParsed is true |
19 | 40 |
20 TEST COMPLETE | 41 TEST COMPLETE |
21 | 42 |
OLD | NEW |