@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 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://svgwg.org/svg2-draft/)
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
@@ -4,6 +4,7 @@
4
4
  // Source: Compression Standard (https://compression.spec.whatwg.org/)
5
5
 
6
6
  enum CompressionFormat {
7
+ "brotli",
7
8
  "deflate",
8
9
  "deflate-raw",
9
10
  "gzip",
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", "track", "video", "worker", "xslt" };
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.75.1",
4
+ "version": "3.75.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/wasm-js-api.idl CHANGED
@@ -15,11 +15,11 @@ dictionary WebAssemblyCompileOptions {
15
15
 
16
16
  [Exposed=*]
17
17
  namespace WebAssembly {
18
- boolean validate(BufferSource bytes, optional WebAssemblyCompileOptions options = {});
19
- Promise<Module> compile(BufferSource bytes, optional WebAssemblyCompileOptions options = {});
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
- BufferSource bytes, optional object importObject, optional WebAssemblyCompileOptions options = {});
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(BufferSource bytes, optional WebAssemblyCompileOptions options = {});
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);