@webref/idl 3.59.2 → 3.59.3

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/html.idl CHANGED
@@ -2009,6 +2009,7 @@ dictionary NavigateEventInit : EventInit {
2009
2009
  DOMString? downloadRequest = null;
2010
2010
  any info;
2011
2011
  boolean hasUAVisualTransition = false;
2012
+ Element? sourceElement = null;
2012
2013
  };
2013
2014
 
2014
2015
  dictionary NavigationInterceptOptions {
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.59.2",
4
+ "version": "3.59.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/turtledove.idl CHANGED
@@ -151,17 +151,31 @@ partial interface Navigator {
151
151
 
152
152
  [SecureContext]
153
153
  partial interface Navigator {
154
- Promise<AdAuctionData> getInterestGroupAdAuctionData(AdAuctionDataConfig config);
154
+ Promise<AdAuctionData> getInterestGroupAdAuctionData(optional AdAuctionDataConfig config = {});
155
+ };
156
+
157
+ dictionary AdAuctionPerSellerData {
158
+ required USVString seller;
159
+ Uint8Array request;
160
+ DOMString error;
155
161
  };
156
162
 
157
163
  dictionary AdAuctionData {
158
- required Uint8Array request;
159
164
  required USVString requestId;
165
+ Uint8Array request;
166
+ sequence<AdAuctionPerSellerData> requests;
160
167
  };
161
168
 
162
- dictionary AdAuctionDataConfig {
169
+ dictionary AdAuctionOneSeller {
163
170
  required USVString seller;
164
- required USVString coordinatorOrigin;
171
+ USVString coordinatorOrigin;
172
+ };
173
+
174
+ dictionary AdAuctionDataConfig {
175
+ USVString seller;
176
+ USVString coordinatorOrigin;
177
+ sequence<AdAuctionOneSeller> sellers;
178
+
165
179
  unsigned long requestSize;
166
180
  record<USVString, AdAuctionDataBuyerConfig> perBuyerConfig;
167
181
  };
@@ -14,6 +14,7 @@ partial interface AnimationTimeline {
14
14
  partial interface Animation {
15
15
  attribute CSSNumberish? startTime;
16
16
  attribute CSSNumberish? currentTime;
17
+ attribute AnimationTrigger? trigger;
17
18
  readonly attribute double? overallProgress;
18
19
  };
19
20
 
@@ -98,6 +99,7 @@ dictionary TimelineRangeOffset {
98
99
  partial dictionary KeyframeAnimationOptions {
99
100
  (TimelineRangeOffset or CSSNumericValue or CSSKeywordValue or DOMString) rangeStart = "normal";
100
101
  (TimelineRangeOffset or CSSNumericValue or CSSKeywordValue or DOMString) rangeEnd = "normal";
102
+ AnimationTrigger? trigger;
101
103
  };
102
104
 
103
105
  [Exposed=Window]
@@ -111,3 +113,17 @@ dictionary AnimationPlaybackEventInit : EventInit {
111
113
  CSSNumberish? currentTime = null;
112
114
  CSSNumberish? timelineTime = null;
113
115
  };
116
+
117
+ [Exposed=Window]
118
+ interface AnimationTrigger {
119
+ constructor(optional AnimationTriggerOptions options = {});
120
+ attribute AnimationTimeline timeline;
121
+ attribute AnimationTriggerType type;
122
+ };
123
+
124
+ dictionary AnimationTriggerOptions {
125
+ AnimationTimeline? timeline;
126
+ AnimationTriggerType? type = "once";
127
+ };
128
+
129
+ enum AnimationTriggerType { "once", "repeat", "alternate", "state" };