@webref/idl 3.12.3 → 3.12.4
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/package.json +1 -1
- package/pointerevents.idl +4 -4
- package/web-animations.idl +0 -3
- package/webrtc-encoded-transform.idl +2 -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
|
+
EpochTimeStamp? 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
|
+
EpochTimeStamp? expires;
|
|
57
57
|
boolean secure;
|
|
58
58
|
CookieSameSite sameSite;
|
|
59
59
|
};
|
package/package.json
CHANGED
package/pointerevents.idl
CHANGED
|
@@ -46,17 +46,17 @@ partial interface Element {
|
|
|
46
46
|
};
|
|
47
47
|
|
|
48
48
|
partial interface mixin GlobalEventHandlers {
|
|
49
|
-
attribute EventHandler
|
|
50
|
-
attribute EventHandler
|
|
49
|
+
attribute EventHandler onpointerover;
|
|
50
|
+
attribute EventHandler onpointerenter;
|
|
51
51
|
attribute EventHandler onpointerdown;
|
|
52
52
|
attribute EventHandler onpointermove;
|
|
53
53
|
[SecureContext] attribute EventHandler onpointerrawupdate;
|
|
54
54
|
attribute EventHandler onpointerup;
|
|
55
55
|
attribute EventHandler onpointercancel;
|
|
56
|
-
attribute EventHandler onpointerover;
|
|
57
56
|
attribute EventHandler onpointerout;
|
|
58
|
-
attribute EventHandler onpointerenter;
|
|
59
57
|
attribute EventHandler onpointerleave;
|
|
58
|
+
attribute EventHandler ongotpointercapture;
|
|
59
|
+
attribute EventHandler onlostpointercapture;
|
|
60
60
|
};
|
|
61
61
|
|
|
62
62
|
partial interface Navigator {
|
package/web-animations.idl
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
[Exposed=Window]
|
|
7
7
|
interface AnimationTimeline {
|
|
8
8
|
readonly attribute double? currentTime;
|
|
9
|
-
readonly attribute TimelinePhase phase;
|
|
10
9
|
};
|
|
11
10
|
|
|
12
11
|
dictionary DocumentTimelineOptions {
|
|
@@ -48,8 +47,6 @@ enum AnimationPlayState { "idle", "running", "paused", "finished" };
|
|
|
48
47
|
|
|
49
48
|
enum AnimationReplaceState { "active", "removed", "persisted" };
|
|
50
49
|
|
|
51
|
-
enum TimelinePhase { "inactive", "before", "active", "after" };
|
|
52
|
-
|
|
53
50
|
[Exposed=Window]
|
|
54
51
|
interface AnimationEffect {
|
|
55
52
|
EffectTiming getTiming();
|
|
@@ -86,7 +86,7 @@ dictionary RTCEncodedVideoFrameMetadata {
|
|
|
86
86
|
[Exposed=(Window,DedicatedWorker)]
|
|
87
87
|
interface RTCEncodedVideoFrame {
|
|
88
88
|
readonly attribute RTCEncodedVideoFrameType type;
|
|
89
|
-
readonly attribute unsigned long
|
|
89
|
+
readonly attribute unsigned long timestamp; // RTP timestamp.
|
|
90
90
|
attribute ArrayBuffer data;
|
|
91
91
|
RTCEncodedVideoFrameMetadata getMetadata();
|
|
92
92
|
};
|
|
@@ -99,7 +99,7 @@ dictionary RTCEncodedAudioFrameMetadata {
|
|
|
99
99
|
|
|
100
100
|
[Exposed=(Window,DedicatedWorker)]
|
|
101
101
|
interface RTCEncodedAudioFrame {
|
|
102
|
-
readonly attribute unsigned long
|
|
102
|
+
readonly attribute unsigned long timestamp; // RTP timestamp.
|
|
103
103
|
attribute ArrayBuffer data;
|
|
104
104
|
RTCEncodedAudioFrameMetadata getMetadata();
|
|
105
105
|
};
|