Automatic update from web-platform-tests Sync interfaces/ with @webref/idl 3.12.4 (#34155) * Sync interfaces/ with @webref/idl 3.12.4 * Revert fetch.idl changes Co-authored-by: wpt-pr-bot <wpt-pr-bot@users.noreply.github.com> Co-authored-by: Philip Jägenstedt <philip@foolip.org> -- wpt-commits: df731dab88a1a25c04eb7e6238c11dc28fda0801 wpt-pr: 34155
28 lines
751 B
Plaintext
28 lines
751 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Capture Handle - Bootstrapping Collaboration when Screensharing (https://w3c.github.io/mediacapture-handle/identity/)
|
|
|
|
dictionary CaptureHandleConfig {
|
|
boolean exposeOrigin = false;
|
|
DOMString handle = "";
|
|
sequence<DOMString> permittedOrigins = [];
|
|
};
|
|
|
|
partial interface MediaDevices {
|
|
undefined setCaptureHandleConfig(optional CaptureHandleConfig config = {});
|
|
};
|
|
|
|
dictionary CaptureHandle {
|
|
DOMString origin;
|
|
DOMString handle;
|
|
};
|
|
|
|
partial interface MediaStreamTrack {
|
|
CaptureHandle? getCaptureHandle();
|
|
};
|
|
|
|
partial interface MediaStreamTrack {
|
|
attribute EventHandler oncapturehandlechange;
|
|
};
|