- From: Chris Wilson <cwilso@google.com>
- Date: Thu, 4 Apr 2013 15:01:01 -0700
- To: "public-audio@w3.org" <public-audio@w3.org>
Received on Thursday, 4 April 2013 22:01:32 UTC
I wanted to get the issues list cleared out if possible: can we reach a
conclusion as to whether we need a MIDIEvent constructor for testing
purposes, or if
var event = new Event("message", {data: [...], receivedTime: t });
suffices, or if we can do something like Marcos suggested:
[Constructor(DOMString type, optional MIDIEventInit eventInitDict)]
interface MIDIMessageEvent : Event {
readonly attribute double receivedTime;
readonly attribute Uint8Array data;
};
dictionary MIDIEventInit : EventInit {
any data;
};
Thoughts?
https://github.com/WebAudio/web-midi-api/issues/1
Received on Thursday, 4 April 2013 22:01:32 UTC