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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/webmidi/requestmidiaccess.html ('k') | LayoutTests/webmidi/send_messages.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/webmidi/requestmidiaccess-expected.txt
diff --git a/LayoutTests/webmidi/requestmidiaccess-expected.txt b/LayoutTests/webmidi/requestmidiaccess-expected.txt
index 925c25c2de79705d31a7554d043f1d1feb375500..f34ca14ce41b97e1a9e10a881e3b51d75a518861 100644
--- a/LayoutTests/webmidi/requestmidiaccess-expected.txt
+++ b/LayoutTests/webmidi/requestmidiaccess-expected.txt
@@ -4,12 +4,33 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS requestMIDIAccess() succeeded with access [object MIDIAccess].
-PASS access.inputs().length is 1
-PASS access.outputs().length is 1
PASS access.sysexEnabled is defined.
PASS access.sysexEnabled is false
-PASS input attributes are correct
-PASS output attributes are correct
+PASS access.inputs.size is 1
+PASS input.id is "MockInputID"
+PASS input.manufacturer is "MockInputManufacturer"
+PASS input.name is "MockInputName"
+PASS input.version is "MockInputVersion"
+PASS inputKey is "MockInputID"
+PASS entry[0] is inputKey
+PASS entry[1] is input
+PASS inputValue is input
+PASS inputs.has('MockInputID') is true
+PASS inputs.has('MockOutputID') is false
+PASS inputs.get('MockInputID') is input
+PASS inputs.get('MockOutputID') is undefined.
+PASS output.id is "MockOutputID"
+PASS output.manufacturer is "MockOutputManufacturer"
+PASS output.name is "MockOutputName"
+PASS output.version is "MockOutputVersion"
+PASS outputKey is "MockOutputID"
+PASS entry[0] is outputKey
+PASS entry[1] is output
+PASS outputValue is output
+PASS outputs.has('MockOutputID') is true
+PASS outputs.has('MockInputID') is false
+PASS outputs.get('MockOutputID') is output
+PASS outputs.get('MockInputID') is undefined.
PASS a note on message is sent without timestamp
PASS a note on message is sent with timestamp
PASS output.send([0xfff, 0x45, 0x7f]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': The value at index 0 (4095) is greater than 0xFF..
« 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