@webref/idl 3.27.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
  };
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.27.0",
4
+ "version": "3.27.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
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
 
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;