@webref/idl 3.65.4 → 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.
- package/css-mixins.idl +1 -1
- package/cssom.idl +2 -2
- package/package.json +1 -1
- package/privacy-preserving-attribution.idl +9 -3
- package/webrtc-encoded-transform.idl +10 -0
- package/webrtc-stats.idl +2 -0
- package/webtransport.idl +3 -0
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
|
|
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]
|
|
177
|
+
[NewObject] CSSStyleProperties getComputedStyle(Element elt, optional CSSOMString? pseudoElt);
|
|
178
178
|
};
|
|
179
179
|
|
|
180
180
|
[Exposed=Window]
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ partial interface Navigator {
|
|
|
7
7
|
[SecureContext, SameObject] readonly attribute Attribution attribution;
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
-
enum
|
|
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 {
|
|
@@ -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 = "";
|