@webref/idl 3.65.3 → 3.65.5

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.
@@ -5,6 +5,6 @@
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSContainerRule : CSSConditionRule {
8
- readonly attribute CSSOMString containerName;
9
- readonly attribute CSSOMString containerQuery;
8
+ readonly attribute CSSOMString containerName;
9
+ readonly attribute CSSOMString containerQuery;
10
10
  };
package/css-mixins.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: CSS Functions and Mixins Module (https://drafts.csswg.org/css-mixins-1/)
4
+ // Source: CSS Custom Functions and Mixins Module Level 1 (https://drafts.csswg.org/css-mixins-1/)
5
5
 
6
6
  [Exposed=Window]
7
7
  interface CSSFunctionRule : CSSGroupingRule {
package/cssom.idl CHANGED
@@ -164,7 +164,7 @@ interface CSSStyleProperties : CSSStyleDeclaration {
164
164
  };
165
165
 
166
166
  interface mixin ElementCSSInlineStyle {
167
- [SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
167
+ [SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
168
168
  };
169
169
 
170
170
  HTMLElement includes ElementCSSInlineStyle;
@@ -174,7 +174,7 @@ SVGElement includes ElementCSSInlineStyle;
174
174
  MathMLElement includes ElementCSSInlineStyle;
175
175
 
176
176
  partial interface Window {
177
- [NewObject] CSSStyleDeclaration getComputedStyle(Element elt, optional CSSOMString? pseudoElt);
177
+ [NewObject] CSSStyleProperties getComputedStyle(Element elt, optional CSSOMString? pseudoElt);
178
178
  };
179
179
 
180
180
  [Exposed=Window]
@@ -8,7 +8,7 @@ partial dictionary CredentialRequestOptions {
8
8
  };
9
9
 
10
10
  dictionary DigitalCredentialRequestOptions {
11
- sequence<DigitalCredentialGetRequest> requests;
11
+ required sequence<DigitalCredentialGetRequest> requests;
12
12
  };
13
13
 
14
14
  dictionary DigitalCredentialGetRequest {
package/fedcm.idl CHANGED
@@ -21,14 +21,14 @@ dictionary DisconnectedAccount {
21
21
 
22
22
  dictionary IdentityCredentialErrorInit {
23
23
  DOMString error;
24
- DOMString url;
24
+ USVString url;
25
25
  };
26
26
 
27
27
  [Exposed=Window, SecureContext]
28
28
  interface IdentityCredentialError : DOMException {
29
29
  constructor(optional DOMString message = "", optional IdentityCredentialErrorInit options = {});
30
30
  readonly attribute DOMString error;
31
- readonly attribute DOMString url;
31
+ readonly attribute USVString url;
32
32
  };
33
33
 
34
34
  partial dictionary CredentialRequestOptions {
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.65.3",
4
+ "version": "3.65.5",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -7,7 +7,7 @@ partial interface Navigator {
7
7
  [SecureContext, SameObject] readonly attribute Attribution attribution;
8
8
  };
9
9
 
10
- enum PrivateAttributionAggregationProtocol { "dap-12-histogram", "tee-00" };
10
+ enum AttributionAggregationProtocol { "dap-15-histogram", "tee-00" };
11
11
 
12
12
  dictionary AttributionAggregationService {
13
13
  required DOMString protocol;
@@ -29,6 +29,7 @@ dictionary AttributionImpressionOptions {
29
29
  sequence<USVString> conversionSites = [];
30
30
  sequence<USVString> conversionCallers = [];
31
31
  unsigned long lifetimeDays = 30;
32
+ long priority = 0;
32
33
  };
33
34
 
34
35
  dictionary AttributionImpressionResult {
@@ -50,13 +51,18 @@ dictionary AttributionConversionOptions {
50
51
  sequence<USVString> impressionSites = [];
51
52
  sequence<USVString> impressionCallers = [];
52
53
 
53
- AttributionLogic logic = "last-touch";
54
+ AttributionLogic logic = "last-n-touch";
55
+ AttributionLogicOptions logicOptions;
54
56
  unsigned long value = 1;
55
57
  unsigned long maxValue = 1;
56
58
  };
57
59
 
58
60
  enum AttributionLogic {
59
- "last-touch",
61
+ "last-n-touch",
62
+ };
63
+
64
+ dictionary AttributionLogicOptions {
65
+ sequence<double> credit;
60
66
  };
61
67
 
62
68
  dictionary AttributionConversionResult {
package/speech-api.idl CHANGED
@@ -14,7 +14,7 @@ interface SpeechRecognition : EventTarget {
14
14
  attribute boolean interimResults;
15
15
  attribute unsigned long maxAlternatives;
16
16
  attribute boolean processLocally;
17
- attribute SpeechRecognitionPhraseList phrases;
17
+ attribute ObservableArray<SpeechRecognitionPhrase> phrases;
18
18
 
19
19
  // methods to drive the speech interaction
20
20
  undefined start();
@@ -135,16 +135,6 @@ interface SpeechRecognitionPhrase {
135
135
  readonly attribute float boost;
136
136
  };
137
137
 
138
- // The object representing a list of phrases for contextual biasing.
139
- [SecureContext, Exposed=Window]
140
- interface SpeechRecognitionPhraseList {
141
- constructor(sequence<SpeechRecognitionPhrase> phrases);
142
- readonly attribute unsigned long length;
143
- SpeechRecognitionPhrase item(unsigned long index);
144
- undefined addItem(SpeechRecognitionPhrase item);
145
- undefined removeItem(unsigned long index);
146
- };
147
-
148
138
  [Exposed=Window]
149
139
  interface SpeechSynthesis : EventTarget {
150
140
  readonly attribute boolean pending;
package/webcrypto.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: Web Cryptography API (https://w3c.github.io/webcrypto/)
4
+ // Source: Web Cryptography API Level 2 (https://w3c.github.io/webcrypto/)
5
5
 
6
6
  partial interface mixin WindowOrWorkerGlobalScope {
7
7
  [SameObject] readonly attribute Crypto crypto;
package/webgpu.idl CHANGED
@@ -565,6 +565,7 @@ dictionary GPUBindGroupDescriptor
565
565
  };
566
566
 
567
567
  typedef (GPUSampler or
568
+ GPUTexture or
568
569
  GPUTextureView or
569
570
  GPUBuffer or
570
571
  GPUBufferBinding or
@@ -1077,9 +1078,9 @@ dictionary GPURenderPassDescriptor
1077
1078
  };
1078
1079
 
1079
1080
  dictionary GPURenderPassColorAttachment {
1080
- required GPUTextureView view;
1081
+ required (GPUTexture or GPUTextureView) view;
1081
1082
  GPUIntegerCoordinate depthSlice;
1082
- GPUTextureView resolveTarget;
1083
+ (GPUTexture or GPUTextureView) resolveTarget;
1083
1084
 
1084
1085
  GPUColor clearValue;
1085
1086
  required GPULoadOp loadOp;
@@ -1087,7 +1088,7 @@ dictionary GPURenderPassColorAttachment {
1087
1088
  };
1088
1089
 
1089
1090
  dictionary GPURenderPassDepthStencilAttachment {
1090
- required GPUTextureView view;
1091
+ required (GPUTexture or GPUTextureView) view;
1091
1092
 
1092
1093
  float depthClearValue;
1093
1094
  GPULoadOp depthLoadOp;
@@ -19,8 +19,18 @@ enum SFrameTransformRole {
19
19
  "decrypt"
20
20
  };
21
21
 
22
+ // List of supported cipher suites, as defined in [[RFC9605]] section 4.5.
23
+ enum SFrameCipherSuite {
24
+ "AES_128_CTR_HMAC_SHA256_80",
25
+ "AES_128_CTR_HMAC_SHA256_64",
26
+ "AES_128_CTR_HMAC_SHA256_32",
27
+ "AES_128_GCM_SHA256_128",
28
+ "AES_256_GCM_SHA512_128"
29
+ };
30
+
22
31
  dictionary SFrameTransformOptions {
23
32
  SFrameTransformRole role = "encrypt";
33
+ required SFrameCipherSuite cipherSuite;
24
34
  };
25
35
 
26
36
  typedef [EnforceRange] unsigned long long SmallCryptoKeyID;
package/webrtc-stats.idl CHANGED
@@ -140,6 +140,8 @@ dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
140
140
  unsigned long framesEncoded;
141
141
  unsigned long keyFramesEncoded;
142
142
  unsigned long long qpSum;
143
+ record<DOMString, double> psnrSum;
144
+ unsigned long long psnrMeasurements;
143
145
  double totalEncodeTime;
144
146
  double totalPacketSendDelay;
145
147
  RTCQualityLimitationReason qualityLimitationReason;
package/webtransport.idl CHANGED
@@ -74,6 +74,7 @@ dictionary WebTransportOptions {
74
74
  [EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null;
75
75
  [EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null;
76
76
  sequence<DOMString> protocols = [];
77
+ DatagramsReadableMode datagramsReadableMode;
77
78
  };
78
79
 
79
80
  enum WebTransportCongestionControl {
@@ -82,6 +83,8 @@ enum WebTransportCongestionControl {
82
83
  "low-latency",
83
84
  };
84
85
 
86
+ enum DatagramsReadableMode { "bytes" };
87
+
85
88
  dictionary WebTransportCloseInfo {
86
89
  unsigned long closeCode = 0;
87
90
  USVString reason = "";