mirror of
https://github.com/servo/servo.git
synced 2025-08-08 23:15:33 +01:00
Update web-platform-tests to revision 9614def367ae8af8247142c34b00f755863d2fbb
This commit is contained in:
parent
6cb39fad47
commit
968ce5b5b3
48 changed files with 919 additions and 130 deletions
|
@ -41,9 +41,9 @@ dictionary ModuleImportDescriptor {
|
|||
|
||||
[LegacyNamespace=WebAssembly, Constructor(BufferSource bytes), Exposed=(Window,Worker,Worklet)]
|
||||
interface Module {
|
||||
static sequence<ModuleExportDescriptor> exports(Module module);
|
||||
static sequence<ModuleImportDescriptor> imports(Module module);
|
||||
static sequence<ArrayBuffer> customSections(Module module, USVString sectionName);
|
||||
static sequence<ModuleExportDescriptor> exports(Module moduleObject);
|
||||
static sequence<ModuleImportDescriptor> imports(Module moduleObject);
|
||||
static sequence<ArrayBuffer> customSections(Module moduleObject, USVString sectionName);
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Constructor(Module module, optional object importObject), Exposed=(Window,Worker,Worklet)]
|
||||
|
@ -87,7 +87,7 @@ dictionary GlobalDescriptor {
|
|||
boolean mutable = false;
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Constructor(GlobalDescriptor descriptor, optional any value), Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Constructor(GlobalDescriptor descriptor, optional any v), Exposed=(Window,Worker,Worklet)]
|
||||
interface Global {
|
||||
any valueOf();
|
||||
attribute any value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue