@webref/idl 3.75.1 → 3.75.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SVG.idl +1 -1
- package/compression.idl +1 -0
- package/fetch.idl +1 -1
- package/package.json +1 -1
- package/wasm-js-api.idl +4 -4
package/SVG.idl
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Scalable Vector Graphics (SVG) 2 (https://
|
|
4
|
+
// Source: Scalable Vector Graphics (SVG) 2 (https://w3c.github.io/svgwg/svg2-draft/)
|
|
5
5
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface SVGElement : Element {
|
package/compression.idl
CHANGED
package/fetch.idl
CHANGED
|
@@ -77,7 +77,7 @@ dictionary RequestInit {
|
|
|
77
77
|
any window; // can only be set to null
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
-
enum RequestDestination { "", "audio", "audioworklet", "document", "embed", "font", "frame", "iframe", "image", "json", "manifest", "object", "paintworklet", "report", "script", "sharedworker", "style",
|
|
80
|
+
enum RequestDestination { "", "audio", "audioworklet", "document", "embed", "font", "frame", "iframe", "image", "json", "manifest", "object", "paintworklet", "report", "script", "sharedworker", "style", "text", "track", "video", "worker", "xslt" };
|
|
81
81
|
enum RequestMode { "navigate", "same-origin", "no-cors", "cors" };
|
|
82
82
|
enum RequestCredentials { "omit", "same-origin", "include" };
|
|
83
83
|
enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" };
|
package/package.json
CHANGED
package/wasm-js-api.idl
CHANGED
|
@@ -15,11 +15,11 @@ dictionary WebAssemblyCompileOptions {
|
|
|
15
15
|
|
|
16
16
|
[Exposed=*]
|
|
17
17
|
namespace WebAssembly {
|
|
18
|
-
boolean validate(
|
|
19
|
-
Promise<Module> compile(
|
|
18
|
+
boolean validate([AllowResizable] AllowSharedBufferSource bytes, optional WebAssemblyCompileOptions options = {});
|
|
19
|
+
Promise<Module> compile([AllowResizable] AllowSharedBufferSource bytes, optional WebAssemblyCompileOptions options = {});
|
|
20
20
|
|
|
21
21
|
Promise<WebAssemblyInstantiatedSource> instantiate(
|
|
22
|
-
|
|
22
|
+
[AllowResizable] AllowSharedBufferSource bytes, optional object importObject, optional WebAssemblyCompileOptions options = {});
|
|
23
23
|
|
|
24
24
|
Promise<Instance> instantiate(
|
|
25
25
|
Module moduleObject, optional object importObject);
|
|
@@ -56,7 +56,7 @@ dictionary ModuleImportDescriptor {
|
|
|
56
56
|
|
|
57
57
|
[LegacyNamespace=WebAssembly, Exposed=*]
|
|
58
58
|
interface Module {
|
|
59
|
-
constructor(
|
|
59
|
+
constructor([AllowResizable] AllowSharedBufferSource bytes, optional WebAssemblyCompileOptions options = {});
|
|
60
60
|
static sequence<ModuleExportDescriptor> exports(Module moduleObject);
|
|
61
61
|
static sequence<ModuleImportDescriptor> imports(Module moduleObject);
|
|
62
62
|
static sequence<ArrayBuffer> customSections(Module moduleObject, DOMString sectionName);
|