summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/webmidi
diff options
context:
space:
mode:
authorcrogers@google.com <crogers@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-07-23 01:12:12 +0000
committercrogers@google.com <crogers@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-07-23 01:12:12 +0000
commit0cc2da880e23fdcba468fb121eb3430a14cabf25 (patch)
tree983842c84aa86f541b8babf95512bef9b905b879 /third_party/WebKit/LayoutTests/webmidi
parent5905c690079ab5b2381560e9793cdc0d5c136b37 (diff)
downloadchromium_src-0cc2da880e23fdcba468fb121eb3430a14cabf25.zip
chromium_src-0cc2da880e23fdcba468fb121eb3430a14cabf25.tar.gz
chromium_src-0cc2da880e23fdcba468fb121eb3430a14cabf25.tar.bz2
Revert 154697 "Implement MIDIOutput.send()"
> Implement MIDIOutput.send() > > This fully implements the Web MIDI API sending of MIDI data in Blink, but further work is still > needed in the chromium back-end. > > BUG=163795 > TEST=requestmidiaccess.html updated to test send() method > R=abarth@chromium.org, toyoshim@chromium.org > > Review URL: https://codereview.chromium.org/18858006 TBR=crogers@google.com Review URL: https://codereview.chromium.org/19542006 git-svn-id: svn://svn.chromium.org/blink/trunk@154703 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/webmidi')
-rw-r--r--third_party/WebKit/LayoutTests/webmidi/requestmidiaccess.html10
1 files changed, 0 insertions, 10 deletions
diff --git a/third_party/WebKit/LayoutTests/webmidi/requestmidiaccess.html b/third_party/WebKit/LayoutTests/webmidi/requestmidiaccess.html
index 0696dc7..67167c6 100644
--- a/third_party/WebKit/LayoutTests/webmidi/requestmidiaccess.html
+++ b/third_party/WebKit/LayoutTests/webmidi/requestmidiaccess.html
@@ -45,16 +45,6 @@ function successCallback1(a) {
testFailed('output attributes are not correct');
}
- // Test sending of MIDI data with a Uint8Array.
- var typedArrayData = new Uint8Array([0x90, 0x45, 0x7f]);
- output.send(typedArrayData);
-
- // Test sending of MIDI data with a regular Array.
- output.send([0x90, 0x45, 0x7f]);
-
- // Test sending of MIDI data with a regular Array giving an explicit timestamp.
- output.send([0x90, 0x45, 0x7f], performance.now());
-
// Now test System Exclusive access - our test mock should not allow this type of access.
try {
navigator.requestMIDIAccess( { sysex: true } ).then(successCallback2, errorCallback2);