Files
tubestation/testing/web-platform/tests/interfaces/capture-handle-identity.idl
github-actions[bot] 5ebf207835 Bug 1770568 [wpt PR 34155] - Sync interfaces/ with @webref/idl 3.12.4, a=testonly
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
2022-07-14 16:18:01 +00:00

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;
};