author | autofoolip <auto@foolip.org> |
Wed, 26 Aug 2020 08:54:19 +0000 | |
changeset 546490 | d5f1d4b71d0aea9a32ce4181d6114b5967f610d6 |
parent 546489 | 663b16ac9029d4225822fe50b54c6da531489afb |
child 546491 | bad89fe12d7a70b20657b6550040b92cbe639d34 |
push id | 37735 |
push user | abutkovits@mozilla.com |
push date | Thu, 27 Aug 2020 21:29:40 +0000 |
treeherder | mozilla-central@109f3a4de567 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1660389, 25168 |
milestone | 82.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/web-platform/tests/interfaces/worklets.idl +++ b/testing/web-platform/tests/interfaces/worklets.idl @@ -4,14 +4,14 @@ // 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 = {}); + [NewObject] Promise<undefined> addModule(USVString moduleURL, optional WorkletOptions options = {}); }; dictionary WorkletOptions { RequestCredentials credentials = "same-origin"; };