@webref/idl 3.26.0 → 3.27.1

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/cookie-store.idl CHANGED
@@ -36,7 +36,7 @@ enum CookieSameSite {
36
36
  dictionary CookieInit {
37
37
  required USVString name;
38
38
  required USVString value;
39
- EpochTimeStamp? expires = null;
39
+ DOMHighResTimeStamp? expires = null;
40
40
  USVString? domain = null;
41
41
  USVString path = "/";
42
42
  CookieSameSite sameSite = "strict";
@@ -53,7 +53,7 @@ dictionary CookieListItem {
53
53
  USVString value;
54
54
  USVString? domain;
55
55
  USVString path;
56
- EpochTimeStamp? expires;
56
+ DOMHighResTimeStamp? expires;
57
57
  boolean secure;
58
58
  CookieSameSite sameSite;
59
59
  };
@@ -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/html.idl CHANGED
@@ -1922,6 +1922,7 @@ interface mixin GlobalEventHandlers {
1922
1922
  attribute EventHandler onauxclick;
1923
1923
  attribute EventHandler onbeforeinput;
1924
1924
  attribute EventHandler onbeforematch;
1925
+ attribute EventHandler onbeforetoggle;
1925
1926
  attribute EventHandler onblur;
1926
1927
  attribute EventHandler oncancel;
1927
1928
  attribute EventHandler oncanplay;
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.1",
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/url.idl CHANGED
@@ -28,6 +28,8 @@ interface URL {
28
28
  interface URLSearchParams {
29
29
  constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = "");
30
30
 
31
+ readonly attribute unsigned long size;
32
+
31
33
  undefined append(USVString name, USVString value);
32
34
  undefined delete(USVString name);
33
35
  USVString? get(USVString name);
package/webauthn.idl CHANGED
@@ -207,6 +207,7 @@ dictionary CollectedClientData {
207
207
  required DOMString type;
208
208
  required DOMString challenge;
209
209
  required DOMString origin;
210
+ DOMString topOrigin;
210
211
  boolean crossOrigin;
211
212
  };
212
213
 
@@ -340,7 +341,6 @@ partial dictionary AuthenticationExtensionsClientInputs {
340
341
  };
341
342
 
342
343
  dictionary AuthenticationExtensionsDevicePublicKeyOutputs {
343
- ArrayBuffer authenticatorOutput;
344
344
  ArrayBuffer signature;
345
345
  };
346
346
 
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
 
package/webidl.idl CHANGED
@@ -46,5 +46,3 @@ interface DOMException { // but see below note about ECMAScript binding
46
46
 
47
47
  callback Function = any (any... arguments);
48
48
  callback VoidFunction = undefined ();
49
-
50
- typedef unsigned long long DOMTimeStamp;