@webref/idl 3.55.4 → 3.56.0

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,6 +74,7 @@ interface Fence {
74
74
  undefined reportEvent(optional ReportEventType event = {});
75
75
  undefined setReportEventDataForAutomaticBeacons(optional FenceEvent event = {});
76
76
  sequence<FencedFrameConfig> getNestedConfigs();
77
+ Promise<undefined> disableUntrustedNetwork();
77
78
  undefined notifyEvent(Event event);
78
79
  };
79
80
 
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.4",
4
+ "version": "3.56.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
package/paint-timing.idl CHANGED
@@ -3,5 +3,12 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: Paint Timing (https://w3c.github.io/paint-timing/)
5
5
 
6
+ [Exposed=Window]
7
+ interface mixin PaintTimingMixin {
8
+ readonly attribute DOMHighResTimeStamp paintTime;
9
+ readonly attribute DOMHighResTimeStamp? presentationTime;
10
+ };
11
+
6
12
  [Exposed=Window]
7
13
  interface PerformancePaintTiming : PerformanceEntry {};
14
+ PerformancePaintTiming includes PaintTimingMixin;
@@ -5,8 +5,6 @@
5
5
 
6
6
  typedef (USVString or FencedFrameConfig) SharedStorageResponse;
7
7
 
8
- enum SharedStorageDataOrigin { "context-origin", "script-origin" };
9
-
10
8
  [Exposed=(Window)]
11
9
  interface SharedStorageWorklet : Worklet {
12
10
  Promise<SharedStorageResponse> selectURL(DOMString name,
@@ -25,6 +23,8 @@ interface SharedStorageWorkletGlobalScope : WorkletGlobalScope {
25
23
 
26
24
  readonly attribute SharedStorage sharedStorage;
27
25
  readonly attribute PrivateAggregation privateAggregation;
26
+
27
+ Promise<sequence<StorageInterestGroup>> interestGroups();
28
28
  };
29
29
 
30
30
  dictionary SharedStorageUrlWithMetadata {
@@ -93,7 +93,7 @@ dictionary SharedStorageRunOperationMethodOptions {
93
93
  };
94
94
 
95
95
  dictionary SharedStorageWorkletOptions : WorkletOptions {
96
- SharedStorageDataOrigin dataOrigin = "context-origin";
96
+ USVString dataOrigin = "context-origin";
97
97
  };
98
98
 
99
99
  interface mixin HTMLSharedStorageWritableElementUtils {
package/webauthn.idl CHANGED
@@ -330,7 +330,6 @@ partial dictionary AuthenticationExtensionsClientInputs {
330
330
 
331
331
  dictionary CredentialPropertiesOutput {
332
332
  boolean rk;
333
- DOMString authenticatorDisplayName;
334
333
  };
335
334
 
336
335
  partial dictionary AuthenticationExtensionsClientOutputs {
package/webgpu.idl CHANGED
@@ -78,7 +78,7 @@ interface GPU {
78
78
  };
79
79
 
80
80
  dictionary GPURequestAdapterOptions {
81
- DOMString featureLevel;
81
+ DOMString featureLevel = "core";
82
82
  GPUPowerPreference powerPreference;
83
83
  boolean forceFallbackAdapter = false;
84
84
  };
@@ -128,6 +128,7 @@ enum GPUFeatureName {
128
128
  interface GPUDevice : EventTarget {
129
129
  [SameObject] readonly attribute GPUSupportedFeatures features;
130
130
  [SameObject] readonly attribute GPUSupportedLimits limits;
131
+ [SameObject] readonly attribute GPUAdapterInfo adapterInfo;
131
132
 
132
133
  [SameObject] readonly attribute GPUQueue queue;
133
134
 
package/webrtc-stats.idl CHANGED
@@ -96,6 +96,9 @@ dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
96
96
  unsigned long long retransmittedBytesReceived;
97
97
  unsigned long rtxSsrc;
98
98
  unsigned long fecSsrc;
99
+ double totalCorruptionProbability;
100
+ double totalSquaredCorruptionProbability;
101
+ unsigned long long corruptionMeasurements;
99
102
  };
100
103
 
101
104
  dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {