mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
29 lines
866 B
Text
29 lines
866 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Media Capture Depth Stream Extensions (https://w3c.github.io/mediacapture-depth/)
|
|
|
|
partial dictionary MediaTrackSupportedConstraints {
|
|
// Applies to both depth stream track and color stream track:
|
|
boolean videoKind = true;
|
|
};
|
|
|
|
partial dictionary MediaTrackCapabilities {
|
|
// Applies to both depth stream track and color stream track:
|
|
DOMString videoKind;
|
|
};
|
|
|
|
partial dictionary MediaTrackConstraintSet {
|
|
// Applies to both depth stream track and color stream track:
|
|
ConstrainDOMString videoKind;
|
|
};
|
|
|
|
partial dictionary MediaTrackSettings {
|
|
// Applies to both depth stream track and color stream track:
|
|
DOMString videoKind;
|
|
};
|
|
|
|
enum VideoKindEnum {
|
|
"color",
|
|
"depth"
|
|
};
|