mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Update web-platform-tests to revision b'f0b66362cc5dec54d81e0a56458b48f310a2eba9'
This commit is contained in:
parent
766917ef4f
commit
75286b8eab
467 changed files with 8309 additions and 3209 deletions
|
@ -8,7 +8,7 @@ dictionary WebAssemblyInstantiatedSource {
|
|||
required Instance instance;
|
||||
};
|
||||
|
||||
[Exposed=(Window,Worker,Worklet)]
|
||||
[Exposed=*]
|
||||
namespace WebAssembly {
|
||||
boolean validate(BufferSource bytes);
|
||||
Promise<Module> compile(BufferSource bytes);
|
||||
|
@ -39,7 +39,7 @@ dictionary ModuleImportDescriptor {
|
|||
required ImportExportKind kind;
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Exposed=*]
|
||||
interface Module {
|
||||
constructor(BufferSource bytes);
|
||||
static sequence<ModuleExportDescriptor> exports(Module moduleObject);
|
||||
|
@ -47,7 +47,7 @@ interface Module {
|
|||
static sequence<ArrayBuffer> customSections(Module moduleObject, DOMString sectionName);
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Exposed=*]
|
||||
interface Instance {
|
||||
constructor(Module module, optional object importObject);
|
||||
readonly attribute object exports;
|
||||
|
@ -58,7 +58,7 @@ dictionary MemoryDescriptor {
|
|||
[EnforceRange] unsigned long maximum;
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Exposed=*]
|
||||
interface Memory {
|
||||
constructor(MemoryDescriptor descriptor);
|
||||
unsigned long grow([EnforceRange] unsigned long delta);
|
||||
|
@ -78,7 +78,7 @@ dictionary TableDescriptor {
|
|||
[EnforceRange] unsigned long maximum;
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Exposed=*]
|
||||
interface Table {
|
||||
constructor(TableDescriptor descriptor, optional any value);
|
||||
unsigned long grow([EnforceRange] unsigned long delta, optional any value);
|
||||
|
@ -102,7 +102,7 @@ dictionary GlobalDescriptor {
|
|||
boolean mutable = false;
|
||||
};
|
||||
|
||||
[LegacyNamespace=WebAssembly, Exposed=(Window,Worker,Worklet)]
|
||||
[LegacyNamespace=WebAssembly, Exposed=*]
|
||||
interface Global {
|
||||
constructor(GlobalDescriptor descriptor, optional any v);
|
||||
any valueOf();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue