mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Automatic update from web-platform-tests Update interfaces/worklets.idl (#22776) Source: https://github.com/tidoust/reffy-reports/blob/5c53f34/ed/idl/worklets.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/672386095 -- wpt-commits: 9ca7b17f240e2f0474b3e8af72c9a130363bfadd wpt-pr: 22776
17 lines
497 B
Text
17 lines
497 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Worklets Level 1 (https://drafts.css-houdini.org/worklets/)
|
|
|
|
[Exposed=Worklet]
|
|
interface WorkletGlobalScope {
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface Worklet {
|
|
[NewObject] Promise<void> addModule(USVString moduleURL, optional WorkletOptions options = {});
|
|
};
|
|
|
|
dictionary WorkletOptions {
|
|
RequestCredentials credentials = "same-origin";
|
|
};
|