gecko-dev/testing/web-platform/tests/interfaces/webmidi.idl
Philip Jägenstedt e9c4215258 Bug 1598576 [wpt PR 20393] - Update interface/ whitespace changes from reffy-reports, a=testonly
Automatic update from web-platform-tests
Update interface/ whitespace changes from reffy-reports (#20393)

A recent respec update caused a lot of whitespace changes:
https://github.com/web-platform-tests/wpt/pull/20383#issuecomment-557471644

Sync them all manually to get them out of the way.

Source: b60317f12f/ed/idl
--

wpt-commits: e030f3cdd965324531aac2c9c432b605a2f4962e
wpt-pr: 20393
2019-11-29 10:57:39 +00:00

87 lines
2.3 KiB
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: Web MIDI API (http://webaudio.github.io/web-midi-api/)
partial interface Navigator {
[SecureContext]
Promise <MIDIAccess> requestMIDIAccess(optional MIDIOptions options = {});
};
dictionary MIDIOptions {
boolean sysex;
boolean software;
};
[SecureContext, Exposed=Window] interface MIDIInputMap {
readonly maplike <DOMString, MIDIInput>;
};
[SecureContext, Exposed=Window] interface MIDIOutputMap {
readonly maplike <DOMString, MIDIOutput>;
};
[SecureContext, Exposed=Window] interface MIDIAccess: EventTarget {
readonly attribute MIDIInputMap inputs;
readonly attribute MIDIOutputMap outputs;
attribute EventHandler onstatechange;
readonly attribute boolean sysexEnabled;
};
[SecureContext, Exposed=Window] interface MIDIPort: EventTarget {
readonly attribute DOMString id;
readonly attribute DOMString? manufacturer;
readonly attribute DOMString? name;
readonly attribute MIDIPortType type;
readonly attribute DOMString? version;
readonly attribute MIDIPortDeviceState state;
readonly attribute MIDIPortConnectionState connection;
attribute EventHandler onstatechange;
Promise <MIDIPort> open();
Promise <MIDIPort> close();
};
[SecureContext, Exposed=Window] interface MIDIInput: MIDIPort {
attribute EventHandler onmidimessage;
};
[SecureContext, Exposed=Window] interface MIDIOutput : MIDIPort {
void send(sequence<octet> data, optional DOMHighResTimeStamp timestamp = 0);
void clear();
};
enum MIDIPortType {
"input",
"output",
};
enum MIDIPortDeviceState {
"disconnected",
"connected",
};
enum MIDIPortConnectionState {
"open",
"closed",
"pending",
};
[SecureContext, Exposed=Window]
interface MIDIMessageEvent : Event {
constructor(DOMString type, optional MIDIMessageEventInit eventInitDict = {});
readonly attribute Uint8Array data;
};
dictionary MIDIMessageEventInit: EventInit {
Uint8Array data;
};
[SecureContext, Exposed=Window]
interface MIDIConnectionEvent : Event {
constructor(DOMString type, optional MIDIConnectionEventInit eventInitDict = {});
readonly attribute MIDIPort port;
};
dictionary MIDIConnectionEventInit: EventInit {
MIDIPort port;
};