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

Side by Side Diff: LayoutTests/webmidi/requestmidiaccess-expected.txt

Issue 513203002: Introduce MIDIInputMap and MIDIOutputMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@iterator-adhoc
Patch Set: rebase Created 6 years, 3 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
« no previous file with comments | « LayoutTests/webmidi/requestmidiaccess.html ('k') | LayoutTests/webmidi/send_messages.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « LayoutTests/webmidi/requestmidiaccess.html ('k') | LayoutTests/webmidi/send_messages.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698