@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 +2 -2
- package/html.idl +1 -0
- package/package.json +1 -1
- package/url.idl +2 -0
- package/webauthn.idl +1 -0
- package/webidl.idl +0 -2
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
|
-
|
|
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
|
-
|
|
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
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