mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
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
87 lines
2.3 KiB
Text
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;
|
|
};
|