mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
46 lines
1.3 KiB
Text
46 lines
1.3 KiB
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Screen Capture (https://w3c.github.io/mediacapture-screen-share/)
|
|
|
|
partial interface MediaDevices {
|
|
Promise<MediaStream> getDisplayMedia(optional DisplayMediaStreamConstraints constraints);
|
|
};
|
|
|
|
dictionary DisplayMediaStreamConstraints {
|
|
(boolean or MediaTrackConstraints) video = true;
|
|
(boolean or MediaTrackConstraints) audio = false;
|
|
};
|
|
|
|
partial dictionary MediaTrackSupportedConstraints {
|
|
boolean displaySurface = true;
|
|
boolean logicalSurface = true;
|
|
boolean cursor = true;
|
|
boolean restrictOwnAudio = true;
|
|
};
|
|
|
|
partial dictionary MediaTrackConstraintSet {
|
|
ConstrainDOMString displaySurface;
|
|
ConstrainBoolean logicalSurface;
|
|
ConstrainDOMString cursor;
|
|
ConstrainBoolean restrictOwnAudio;
|
|
};
|
|
|
|
partial dictionary MediaTrackSettings {
|
|
DOMString displaySurface;
|
|
boolean logicalSurface;
|
|
DOMString cursor;
|
|
};
|
|
|
|
enum DisplayCaptureSurfaceType {
|
|
"monitor",
|
|
"window",
|
|
"application",
|
|
"browser"
|
|
};
|
|
|
|
enum CursorCaptureConstraint {
|
|
"never",
|
|
"always",
|
|
"motion"
|
|
};
|