@webref/idl 3.77.0 → 3.78.0

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/fullscreen.idl CHANGED
@@ -9,7 +9,13 @@ enum FullscreenNavigationUI {
9
9
  "hide"
10
10
  };
11
11
 
12
+ enum FullscreenKeyboardLock {
13
+ "browser",
14
+ "none"
15
+ };
16
+
12
17
  dictionary FullscreenOptions {
18
+ FullscreenKeyboardLock keyboardLock = "none";
13
19
  FullscreenNavigationUI navigationUI = "auto";
14
20
  };
15
21
 
package/mathml-core.idl CHANGED
@@ -7,3 +7,10 @@
7
7
  interface MathMLElement : Element { };
8
8
  MathMLElement includes GlobalEventHandlers;
9
9
  MathMLElement includes HTMLOrSVGOrMathMLElement;
10
+
11
+ [Exposed=Window]
12
+ interface MathMLAnchorElement : MathMLElement {
13
+ [ReflectSetter] attribute USVString href;
14
+ [Reflect] attribute DOMString target;
15
+ };
16
+ MathMLAnchorElement includes HyperlinkElementUtils;
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.77.0",
4
+ "version": "3.78.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/speech-api.idl CHANGED
@@ -38,9 +38,16 @@ interface SpeechRecognition : EventTarget {
38
38
  attribute EventHandler onend;
39
39
  };
40
40
 
41
+ enum SpeechRecognitionQuality {
42
+ "command",
43
+ "dictation",
44
+ "conversation"
45
+ };
46
+
41
47
  dictionary SpeechRecognitionOptions {
42
48
  required sequence<DOMString> langs;
43
49
  boolean processLocally = false;
50
+ SpeechRecognitionQuality quality = "command";
44
51
  };
45
52
 
46
53
  enum SpeechRecognitionErrorCode {
package/webauthn.idl CHANGED
@@ -444,8 +444,8 @@ partial dictionary AuthenticationExtensionsClientInputsJSON {
444
444
  };
445
445
 
446
446
  partial dictionary AuthenticationExtensionsClientOutputs {
447
- boolean remoteClientDataJson;
447
+ boolean remoteClientDataJSON;
448
448
  };
449
449
  partial dictionary AuthenticationExtensionsClientOutputsJSON {
450
- boolean remoteClientDataJson;
450
+ boolean remoteClientDataJSON;
451
451
  };
package/webgpu.idl CHANGED
@@ -19,6 +19,7 @@ interface GPUSupportedLimits {
19
19
  readonly attribute unsigned long maxTextureArrayLayers;
20
20
  readonly attribute unsigned long maxBindGroups;
21
21
  readonly attribute unsigned long maxBindGroupsPlusVertexBuffers;
22
+ readonly attribute unsigned long maxImmediateSize;
22
23
  readonly attribute unsigned long maxBindingsPerBindGroup;
23
24
  readonly attribute unsigned long maxDynamicUniformBuffersPerPipelineLayout;
24
25
  readonly attribute unsigned long maxDynamicStorageBuffersPerPipelineLayout;
@@ -602,6 +603,7 @@ GPUPipelineLayout includes GPUObjectBase;
602
603
  dictionary GPUPipelineLayoutDescriptor
603
604
  : GPUObjectDescriptorBase {
604
605
  required sequence<GPUBindGroupLayout?> bindGroupLayouts;
606
+ GPUSize32 immediateSize = 0;
605
607
  };
606
608
 
607
609
  [Exposed=(Window, Worker), SecureContext]
@@ -1018,6 +1020,9 @@ interface mixin GPUBindingCommandsMixin {
1018
1020
  [AllowShared] Uint32Array dynamicOffsetsData,
1019
1021
  GPUSize64 dynamicOffsetsDataStart,
1020
1022
  GPUSize32 dynamicOffsetsDataLength);
1023
+
1024
+ undefined setImmediates(GPUSize32 rangeOffset, AllowSharedBufferSource data,
1025
+ optional GPUSize64 dataOffset = 0, optional GPUSize64 dataSize);
1021
1026
  };
1022
1027
 
1023
1028
  interface mixin GPUDebugCommandsMixin {