mirror of
https://github.com/servo/servo.git
synced 2025-07-16 11:53:39 +01:00
17 lines
585 B
Text
17 lines
585 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 from DOM Elements (https://w3c.github.io/mediacapture-fromelement/)
|
|
|
|
partial interface HTMLMediaElement {
|
|
MediaStream captureStream();
|
|
};
|
|
|
|
partial interface HTMLCanvasElement {
|
|
MediaStream captureStream(optional double frameRequestRate);
|
|
};
|
|
|
|
[Exposed=Window] interface CanvasCaptureMediaStreamTrack : MediaStreamTrack {
|
|
readonly attribute HTMLCanvasElement canvas;
|
|
void requestFrame();
|
|
};
|