mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
39 lines
1 KiB
Text
39 lines
1 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 Navigator {
|
|
Promise<MediaStream> getDisplayMedia(optional MediaStreamConstraints constraints);
|
|
};
|
|
|
|
partial dictionary MediaTrackSupportedConstraints {
|
|
boolean displaySurface = true;
|
|
boolean logicalSurface = true;
|
|
boolean cursor = true;
|
|
};
|
|
|
|
partial dictionary MediaTrackConstraintSet {
|
|
ConstrainDOMString displaySurface;
|
|
ConstrainBoolean logicalSurface;
|
|
ConstrainDOMString cursor;
|
|
};
|
|
|
|
partial dictionary MediaTrackSettings {
|
|
DOMString displaySurface;
|
|
boolean logicalSurface;
|
|
DOMString cursor;
|
|
};
|
|
|
|
enum DisplayCaptureSurfaceType {
|
|
"monitor",
|
|
"window",
|
|
"application",
|
|
"browser"
|
|
};
|
|
|
|
enum CursorCaptureConstraint {
|
|
"never",
|
|
"always",
|
|
"motion"
|
|
};
|