gecko-dev/testing/web-platform/tests/interfaces/worklets.idl
autofoolip 8011849188 Bug 1628219 [wpt PR 22776] - Update interfaces/worklets.idl, a=testonly
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
2020-04-13 14:08:25 +00:00

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