@webref/idl 3.55.2 → 3.55.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/fenced-frame.idl CHANGED
@@ -74,9 +74,14 @@ interface Fence {
74
74
  undefined reportEvent(optional ReportEventType event = {});
75
75
  undefined setReportEventDataForAutomaticBeacons(optional FenceEvent event = {});
76
76
  sequence<FencedFrameConfig> getNestedConfigs();
77
+ undefined notifyEvent(Event event);
77
78
  };
78
79
 
79
80
  partial interface Window {
80
81
  // Collection of fenced frame APIs
81
82
  readonly attribute Fence? fence;
82
83
  };
84
+
85
+ partial interface mixin GlobalEventHandlers {
86
+ attribute EventHandler onfencedtreeclick;
87
+ };
package/html.idl CHANGED
@@ -881,10 +881,12 @@ interface HTMLInputElement : HTMLElement {
881
881
  [HTMLConstructor] constructor();
882
882
 
883
883
  [CEReactions] attribute DOMString accept;
884
+ [CEReactions] attribute boolean alpha;
884
885
  [CEReactions] attribute DOMString alt;
885
886
  [CEReactions] attribute DOMString autocomplete;
886
887
  [CEReactions] attribute boolean defaultChecked;
887
888
  attribute boolean checked;
889
+ [CEReactions] attribute DOMString colorSpace;
888
890
  [CEReactions] attribute DOMString dirName;
889
891
  [CEReactions] attribute boolean disabled;
890
892
  readonly attribute HTMLFormElement? form;
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.55.2",
4
+ "version": "3.55.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -19,55 +19,3 @@ dictionary PAHistogramContribution {
19
19
  dictionary PADebugModeOptions {
20
20
  required bigint debugKey;
21
21
  };
22
-
23
- partial interface InterestGroupScriptRunnerGlobalScope {
24
- readonly attribute PrivateAggregation privateAggregation;
25
- };
26
-
27
- dictionary PASignalValue {
28
- required DOMString baseValue;
29
- double scale;
30
- (bigint or long) offset;
31
- };
32
-
33
- dictionary PAExtendedHistogramContribution {
34
- required (PASignalValue or bigint) bucket;
35
- required (PASignalValue or long) value;
36
- bigint filteringId = 0;
37
- };
38
-
39
- [Exposed=InterestGroupScriptRunnerGlobalScope, SecureContext]
40
- partial interface PrivateAggregation {
41
- undefined contributeToHistogramOnEvent(
42
- DOMString event, PAExtendedHistogramContribution contribution);
43
- };
44
-
45
- dictionary AuctionReportBuyersConfig {
46
- required bigint bucket;
47
- required double scale;
48
- };
49
-
50
- dictionary AuctionReportBuyerDebugModeConfig {
51
- boolean enabled = false;
52
-
53
- // Must only be provided if `enabled` is true.
54
- bigint? debugKey;
55
- };
56
-
57
- partial dictionary AuctionAdConfig {
58
- sequence<bigint> auctionReportBuyerKeys;
59
- record<DOMString, AuctionReportBuyersConfig> auctionReportBuyers;
60
- AuctionReportBuyerDebugModeConfig auctionReportBuyerDebugModeConfig;
61
- };
62
-
63
- dictionary ProtectedAudiencePrivateAggregationConfig {
64
- USVString aggregationCoordinatorOrigin;
65
- };
66
-
67
- partial dictionary AuctionAdConfig {
68
- ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
69
- };
70
-
71
- partial dictionary AuctionAdInterestGroup {
72
- ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
73
- };
@@ -18,6 +18,7 @@ interface PerformanceResourceTiming : PerformanceEntry {
18
18
  readonly attribute DOMHighResTimeStamp connectEnd;
19
19
  readonly attribute DOMHighResTimeStamp secureConnectionStart;
20
20
  readonly attribute DOMHighResTimeStamp requestStart;
21
+ readonly attribute DOMHighResTimeStamp finalResponseHeadersStart;
21
22
  readonly attribute DOMHighResTimeStamp firstInterimResponseStart;
22
23
  readonly attribute DOMHighResTimeStamp responseStart;
23
24
  readonly attribute DOMHighResTimeStamp responseEnd;
package/turtledove.idl CHANGED
@@ -15,6 +15,7 @@ dictionary AuctionAd {
15
15
 
16
16
  USVString buyerReportingId;
17
17
  USVString buyerAndSellerReportingId;
18
+ sequence<USVString> selectableBuyerAndSellerReportingIds;
18
19
  sequence<USVString> allowedReportingOrigins;
19
20
  DOMString adRenderId;
20
21
  };
@@ -47,11 +48,16 @@ dictionary GenerateBidInterestGroup {
47
48
  record<DOMString, sequence<DOMString>> sizeGroups;
48
49
  };
49
50
 
51
+ dictionary ProtectedAudiencePrivateAggregationConfig {
52
+ USVString aggregationCoordinatorOrigin;
53
+ };
54
+
50
55
  dictionary AuctionAdInterestGroup : GenerateBidInterestGroup {
51
56
  double priority = 0.0;
52
57
  record<DOMString, double> prioritySignalsOverrides;
53
58
  required double lifetimeMs;
54
59
  DOMString additionalBidKey;
60
+ ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
55
61
  };
56
62
 
57
63
  [SecureContext]
@@ -76,6 +82,18 @@ partial interface Navigator {
76
82
  readonly attribute boolean deprecatedRunAdAuctionEnforcesKAnonymity;
77
83
  };
78
84
 
85
+ dictionary AuctionReportBuyersConfig {
86
+ required bigint bucket;
87
+ required double scale;
88
+ };
89
+
90
+ dictionary AuctionReportBuyerDebugModeConfig {
91
+ boolean enabled = false;
92
+
93
+ // Must only be provided if `enabled` is true.
94
+ bigint? debugKey;
95
+ };
96
+
79
97
  dictionary AuctionRealTimeReportingConfig {
80
98
  required DOMString type;
81
99
  };
@@ -89,21 +107,27 @@ dictionary AuctionAdConfig {
89
107
  sequence<USVString> interestGroupBuyers;
90
108
  Promise<any> auctionSignals;
91
109
  Promise<any> sellerSignals;
92
- Promise<DOMString> directFromSellerSignalsHeaderAdSlot;
93
- Promise<record<USVString, USVString>> deprecatedRenderURLReplacements;
110
+ Promise<DOMString?> directFromSellerSignalsHeaderAdSlot;
111
+ Promise<record<USVString, USVString>?> deprecatedRenderURLReplacements;
94
112
  unsigned long long sellerTimeout;
95
113
  unsigned short sellerExperimentGroupId;
96
- Promise<record<USVString, any>> perBuyerSignals;
97
- Promise<record<USVString, unsigned long long>> perBuyerTimeouts;
98
- Promise<record<USVString, unsigned long long>> perBuyerCumulativeTimeouts;
114
+ Promise<record<USVString, any>?> perBuyerSignals;
115
+ Promise<record<USVString, unsigned long long>?> perBuyerTimeouts;
116
+ Promise<record<USVString, unsigned long long>?> perBuyerCumulativeTimeouts;
99
117
  unsigned long long reportingTimeout;
100
118
  USVString sellerCurrency;
101
- Promise<record<USVString, USVString>> perBuyerCurrencies;
119
+ Promise<record<USVString, USVString>?> perBuyerCurrencies;
102
120
  record<USVString, unsigned short> perBuyerMultiBidLimits;
103
121
  record<USVString, unsigned short> perBuyerGroupLimits;
104
122
  record<USVString, unsigned short> perBuyerExperimentGroupIds;
105
123
  record<USVString, record<USVString, double>> perBuyerPrioritySignals;
124
+
125
+ sequence<bigint> auctionReportBuyerKeys;
126
+ record<DOMString, AuctionReportBuyersConfig> auctionReportBuyers;
127
+ AuctionReportBuyerDebugModeConfig auctionReportBuyerDebugModeConfig;
106
128
  sequence<DOMString> requiredSellerCapabilities;
129
+ ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
130
+
107
131
  record<DOMString, DOMString> requestedSize;
108
132
  sequence<record<DOMString, DOMString>> allSlotsRequestedSizes;
109
133
  Promise<undefined> additionalBids;
@@ -144,6 +168,18 @@ dictionary AdAuctionDataBuyerConfig {
144
168
  unsigned long targetSize;
145
169
  };
146
170
 
171
+ dictionary StorageInterestGroup : AuctionAdInterestGroup {
172
+ unsigned long long joinCount;
173
+ unsigned long long bidCount;
174
+ sequence<PreviousWin> prevWinsMs;
175
+ USVString joiningOrigin;
176
+ long long timeSinceGroupJoinedMs;
177
+ long long lifetimeRemainingMs;
178
+ long long timeSinceLastUpdateMs;
179
+ long long timeUntilNextUpdateMs;
180
+ unsigned long long estimatedSize;
181
+ };
182
+
147
183
  [SecureContext]
148
184
  partial interface Navigator {
149
185
  Promise<DOMString> createAuctionNonce();
@@ -151,6 +187,25 @@ partial interface Navigator {
151
187
 
152
188
  [Exposed=InterestGroupScriptRunnerGlobalScope]
153
189
  interface InterestGroupScriptRunnerGlobalScope {
190
+ readonly attribute PrivateAggregation? privateAggregation;
191
+ };
192
+
193
+ dictionary PASignalValue {
194
+ required DOMString baseValue;
195
+ double scale;
196
+ (bigint or long) offset;
197
+ };
198
+
199
+ dictionary PAExtendedHistogramContribution {
200
+ required (PASignalValue or bigint) bucket;
201
+ required (PASignalValue or long) value;
202
+ bigint filteringId = 0;
203
+ };
204
+
205
+ [Exposed=InterestGroupScriptRunnerGlobalScope]
206
+ partial interface PrivateAggregation {
207
+ undefined contributeToHistogramOnEvent(
208
+ DOMString event, PAExtendedHistogramContribution contribution);
154
209
  };
155
210
 
156
211
  [Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
@@ -198,6 +253,7 @@ dictionary GenerateBidOutput {
198
253
  DOMString bidCurrency;
199
254
  (DOMString or AdRender) render;
200
255
  any ad;
256
+ USVString selectedBuyerAndSellerReportingId;
201
257
  sequence<(DOMString or AdRender)> adComponents;
202
258
  double adCost;
203
259
  unrestricted double modelingSignals;
@@ -294,6 +350,7 @@ dictionary ReportingBrowserSignals {
294
350
  USVString componentSeller;
295
351
 
296
352
  USVString buyerAndSellerReportingId;
353
+ USVString selectedBuyerAndSellerReportingId;
297
354
  };
298
355
 
299
356
  dictionary ReportResultBrowserSignals : ReportingBrowserSignals {
package/user-timing.idl CHANGED
@@ -1,7 +1,7 @@
1
1
  // GENERATED CONTENT - DO NOT EDIT
2
2
  // Content was automatically extracted by Reffy into webref
3
3
  // (https://github.com/w3c/webref)
4
- // Source: User Timing Level 3 (https://w3c.github.io/user-timing/)
4
+ // Source: User Timing (https://w3c.github.io/user-timing/)
5
5
 
6
6
  dictionary PerformanceMarkOptions {
7
7
  any detail;
@@ -136,6 +136,7 @@ dictionary KeyframeAnimationOptions : KeyframeEffectOptions {
136
136
 
137
137
  dictionary GetAnimationsOptions {
138
138
  boolean subtree = false;
139
+ CSSOMString? pseudoElement = null;
139
140
  };
140
141
 
141
142
  partial interface Document {
package/webcodecs.idl CHANGED
@@ -317,6 +317,8 @@ interface VideoFrame {
317
317
  readonly attribute unsigned long codedHeight;
318
318
  readonly attribute DOMRectReadOnly? codedRect;
319
319
  readonly attribute DOMRectReadOnly? visibleRect;
320
+ readonly attribute double rotation;
321
+ readonly attribute boolean flip;
320
322
  readonly attribute unsigned long displayWidth;
321
323
  readonly attribute unsigned long displayHeight;
322
324
  readonly attribute unsigned long long? duration; // microseconds
@@ -344,6 +346,9 @@ dictionary VideoFrameInit {
344
346
  // aspect ratio unless an explicit displayWidth and displayHeight are given.
345
347
  DOMRectInit visibleRect;
346
348
 
349
+ double rotation = 0;
350
+ boolean flip = false;
351
+
347
352
  // Default matches image unless visibleRect is provided.
348
353
  [EnforceRange] unsigned long displayWidth;
349
354
  [EnforceRange] unsigned long displayHeight;
@@ -364,6 +369,9 @@ dictionary VideoFrameBufferInit {
364
369
  // Default visible rect is coded size positioned at (0,0)
365
370
  DOMRectInit visibleRect;
366
371
 
372
+ double rotation = 0;
373
+ boolean flip = false;
374
+
367
375
  // Default display dimensions match visibleRect.
368
376
  [EnforceRange] unsigned long displayWidth;
369
377
  [EnforceRange] unsigned long displayHeight;
package/webgpu.idl CHANGED
@@ -570,7 +570,7 @@ GPUPipelineLayout includes GPUObjectBase;
570
570
 
571
571
  dictionary GPUPipelineLayoutDescriptor
572
572
  : GPUObjectDescriptorBase {
573
- required sequence<GPUBindGroupLayout> bindGroupLayouts;
573
+ required sequence<GPUBindGroupLayout?> bindGroupLayouts;
574
574
  };
575
575
 
576
576
  [Exposed=(Window, Worker), SecureContext]
@@ -810,22 +810,31 @@ enum GPUIndexFormat {
810
810
  };
811
811
 
812
812
  enum GPUVertexFormat {
813
+ "uint8",
813
814
  "uint8x2",
814
815
  "uint8x4",
816
+ "sint8",
815
817
  "sint8x2",
816
818
  "sint8x4",
819
+ "unorm8",
817
820
  "unorm8x2",
818
821
  "unorm8x4",
822
+ "snorm8",
819
823
  "snorm8x2",
820
824
  "snorm8x4",
825
+ "uint16",
821
826
  "uint16x2",
822
827
  "uint16x4",
828
+ "sint16",
823
829
  "sint16x2",
824
830
  "sint16x4",
831
+ "unorm16",
825
832
  "unorm16x2",
826
833
  "unorm16x4",
834
+ "snorm16",
827
835
  "snorm16x2",
828
836
  "snorm16x4",
837
+ "float16",
829
838
  "float16x2",
830
839
  "float16x4",
831
840
  "float32",
@@ -841,6 +850,7 @@ enum GPUVertexFormat {
841
850
  "sint32x3",
842
851
  "sint32x4",
843
852
  "unorm10-10-10-2",
853
+ "unorm8x4-bgra",
844
854
  };
845
855
 
846
856
  enum GPUVertexStepMode {
@@ -866,26 +876,26 @@ dictionary GPUVertexAttribute {
866
876
  required GPUIndex32 shaderLocation;
867
877
  };
868
878
 
869
- dictionary GPUImageDataLayout {
879
+ dictionary GPUTexelCopyBufferLayout {
870
880
  GPUSize64 offset = 0;
871
881
  GPUSize32 bytesPerRow;
872
882
  GPUSize32 rowsPerImage;
873
883
  };
874
884
 
875
- dictionary GPUImageCopyBuffer
876
- : GPUImageDataLayout {
885
+ dictionary GPUTexelCopyBufferInfo
886
+ : GPUTexelCopyBufferLayout {
877
887
  required GPUBuffer buffer;
878
888
  };
879
889
 
880
- dictionary GPUImageCopyTexture {
890
+ dictionary GPUTexelCopyTextureInfo {
881
891
  required GPUTexture texture;
882
892
  GPUIntegerCoordinate mipLevel = 0;
883
893
  GPUOrigin3D origin = {};
884
894
  GPUTextureAspect aspect = "all";
885
895
  };
886
896
 
887
- dictionary GPUImageCopyTextureTagged
888
- : GPUImageCopyTexture {
897
+ dictionary GPUCopyExternalImageDestInfo
898
+ : GPUTexelCopyTextureInfo {
889
899
  PredefinedColorSpace colorSpace = "srgb";
890
900
  boolean premultipliedAlpha = false;
891
901
  };
@@ -896,10 +906,10 @@ typedef (ImageBitmap or
896
906
  HTMLVideoElement or
897
907
  VideoFrame or
898
908
  HTMLCanvasElement or
899
- OffscreenCanvas) GPUImageCopyExternalImageSource;
909
+ OffscreenCanvas) GPUCopyExternalImageSource;
900
910
 
901
- dictionary GPUImageCopyExternalImage {
902
- required GPUImageCopyExternalImageSource source;
911
+ dictionary GPUCopyExternalImageSourceInfo {
912
+ required GPUCopyExternalImageSource source;
903
913
  GPUOrigin2D origin = {};
904
914
  boolean flipY = false;
905
915
  };
@@ -929,18 +939,18 @@ interface GPUCommandEncoder {
929
939
  GPUSize64 size);
930
940
 
931
941
  undefined copyBufferToTexture(
932
- GPUImageCopyBuffer source,
933
- GPUImageCopyTexture destination,
942
+ GPUTexelCopyBufferInfo source,
943
+ GPUTexelCopyTextureInfo destination,
934
944
  GPUExtent3D copySize);
935
945
 
936
946
  undefined copyTextureToBuffer(
937
- GPUImageCopyTexture source,
938
- GPUImageCopyBuffer destination,
947
+ GPUTexelCopyTextureInfo source,
948
+ GPUTexelCopyBufferInfo destination,
939
949
  GPUExtent3D copySize);
940
950
 
941
951
  undefined copyTextureToTexture(
942
- GPUImageCopyTexture source,
943
- GPUImageCopyTexture destination,
952
+ GPUTexelCopyTextureInfo source,
953
+ GPUTexelCopyTextureInfo destination,
944
954
  GPUExtent3D copySize);
945
955
 
946
956
  undefined clearBuffer(
@@ -1145,14 +1155,14 @@ interface GPUQueue {
1145
1155
  optional GPUSize64 size);
1146
1156
 
1147
1157
  undefined writeTexture(
1148
- GPUImageCopyTexture destination,
1158
+ GPUTexelCopyTextureInfo destination,
1149
1159
  AllowSharedBufferSource data,
1150
- GPUImageDataLayout dataLayout,
1160
+ GPUTexelCopyBufferLayout dataLayout,
1151
1161
  GPUExtent3D size);
1152
1162
 
1153
1163
  undefined copyExternalImageToTexture(
1154
- GPUImageCopyExternalImage source,
1155
- GPUImageCopyTextureTagged destination,
1164
+ GPUCopyExternalImageSourceInfo source,
1165
+ GPUCopyExternalImageDestInfo destination,
1156
1166
  GPUExtent3D copySize);
1157
1167
  };
1158
1168
  GPUQueue includes GPUObjectBase;
@@ -1275,7 +1285,6 @@ dictionary GPUUncapturedErrorEventInit : EventInit {
1275
1285
  };
1276
1286
 
1277
1287
  partial interface GPUDevice {
1278
- [Exposed=(Window, Worker)]
1279
1288
  attribute EventHandler onuncapturederror;
1280
1289
  };
1281
1290
 
package/webnn.idl CHANGED
@@ -95,8 +95,8 @@ dictionary MLOperandDescriptor {
95
95
 
96
96
  [SecureContext, Exposed=(Window, DedicatedWorker)]
97
97
  interface MLOperand {
98
- MLOperandDataType dataType();
99
- sequence<unsigned long> shape();
98
+ readonly attribute MLOperandDataType dataType;
99
+ readonly attribute FrozenArray<unsigned long> shape;
100
100
  };
101
101
 
102
102
  dictionary MLOperatorOptions {
@@ -872,7 +872,7 @@ dictionary MLSplitSupportLimits {
872
872
  };
873
873
 
874
874
  partial dictionary MLOpSupportLimits {
875
- MLSingleInputSupportLimits split;
875
+ MLSplitSupportLimits split;
876
876
  };
877
877
 
878
878
  partial interface MLGraphBuilder {
package/webxr.idl CHANGED
@@ -40,6 +40,7 @@ enum XRVisibilityState {
40
40
  readonly attribute Float32Array? supportedFrameRates;
41
41
  [SameObject] readonly attribute XRRenderState renderState;
42
42
  [SameObject] readonly attribute XRInputSourceArray inputSources;
43
+ [SameObject] readonly attribute XRInputSourceArray trackedSources;
43
44
  readonly attribute FrozenArray<DOMString> enabledFeatures;
44
45
  readonly attribute boolean isSystemKeyboardSupported;
45
46