@webref/idl 3.26.0 → 3.27.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.
@@ -0,0 +1,10 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: CSS Cascading and Inheritance Level 6 (https://drafts.csswg.org/css-cascade-6/)
5
+
6
+ [Exposed=Window]
7
+ interface CSSScopeRule : CSSGroupingRule {
8
+ readonly attribute CSSOMString start;
9
+ readonly attribute CSSOMString end;
10
+ };
package/dom.idl CHANGED
@@ -618,7 +618,7 @@ callback interface XPathNSResolver {
618
618
 
619
619
  interface mixin XPathEvaluatorBase {
620
620
  [NewObject] XPathExpression createExpression(DOMString expression, optional XPathNSResolver? resolver = null);
621
- XPathNSResolver createNSResolver(Node nodeResolver);
621
+ Node createNSResolver(Node nodeResolver); // legacy
622
622
  // XPathResult.ANY_TYPE = 0
623
623
  XPathResult evaluate(DOMString expression, Node contextNode, optional XPathNSResolver? resolver = null, optional unsigned short type = 0, optional XPathResult? result = null);
624
624
  };
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.26.0",
4
+ "version": "3.27.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -4,7 +4,7 @@
4
4
  // Source: requestStorageAccessForOrigin API (https://privacycg.github.io/requestStorageAccessForOrigin/)
5
5
 
6
6
  partial interface Document {
7
- Promise<undefined> requestStorageAccessForOrigin(USVString origin);
7
+ Promise<undefined> requestStorageAccessForOrigin(USVString requestedOrigin);
8
8
  };
9
9
 
10
10
  dictionary TopLevelStorageAccessPermissionDescriptor : PermissionDescriptor {
package/webauthn.idl CHANGED
@@ -340,7 +340,6 @@ partial dictionary AuthenticationExtensionsClientInputs {
340
340
  };
341
341
 
342
342
  dictionary AuthenticationExtensionsDevicePublicKeyOutputs {
343
- ArrayBuffer authenticatorOutput;
344
343
  ArrayBuffer signature;
345
344
  };
346
345
 
package/webgpu.idl CHANGED
@@ -549,7 +549,7 @@ dictionary GPUPipelineLayoutDescriptor : GPUObjectDescriptorBase {
549
549
 
550
550
  [Exposed=(Window, DedicatedWorker), SecureContext]
551
551
  interface GPUShaderModule {
552
- Promise<GPUCompilationInfo> compilationInfo();
552
+ Promise<GPUCompilationInfo> getCompilationInfo();
553
553
  };
554
554
  GPUShaderModule includes GPUObjectBase;
555
555