2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2016-11-06 11:53:34 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://drafts.css-houdini.org/worklets/#idl-index
|
|
|
|
*/
|
|
|
|
|
2020-03-30 23:55:07 +03:00
|
|
|
[SecureContext, Pref="dom.worklet.enabled",
|
2019-09-27 18:26:14 +03:00
|
|
|
Exposed=Window]
|
2016-11-06 11:53:34 +03:00
|
|
|
interface Worklet {
|
2017-02-01 23:43:37 +03:00
|
|
|
[NewObject, Throws, NeedsCallerType]
|
2019-07-03 10:52:35 +03:00
|
|
|
Promise<void> addModule(USVString moduleURL, optional WorkletOptions options = {});
|
2018-07-10 15:24:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary WorkletOptions {
|
|
|
|
RequestCredentials credentials = "same-origin";
|
2016-11-06 11:53:34 +03:00
|
|
|
};
|