@webref/idl 3.60.2 → 3.61.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/SVG.idl +0 -4
- package/html.idl +1 -0
- package/package.json +1 -1
- package/ppa.idl +1 -2
- package/private-aggregation-api.idl +2 -0
- package/svg-paths.idl +31 -0
- package/turtledove.idl +0 -6
- package/webaudio.idl +0 -28
package/SVG.idl
CHANGED
|
@@ -418,10 +418,6 @@ interface SVGAnimatedPreserveAspectRatio {
|
|
|
418
418
|
[SameObject] readonly attribute SVGPreserveAspectRatio animVal;
|
|
419
419
|
};
|
|
420
420
|
|
|
421
|
-
[Exposed=Window]
|
|
422
|
-
interface SVGPathElement : SVGGeometryElement {
|
|
423
|
-
};
|
|
424
|
-
|
|
425
421
|
[Exposed=Window]
|
|
426
422
|
interface SVGRectElement : SVGGeometryElement {
|
|
427
423
|
[SameObject] readonly attribute SVGAnimatedLength x;
|
package/html.idl
CHANGED
|
@@ -1483,6 +1483,7 @@ interface mixin CanvasPathDrawingStyles {
|
|
|
1483
1483
|
|
|
1484
1484
|
interface mixin CanvasTextDrawingStyles {
|
|
1485
1485
|
// text
|
|
1486
|
+
attribute DOMString lang; // (default: "inherit")
|
|
1486
1487
|
attribute DOMString font; // (default 10px sans-serif)
|
|
1487
1488
|
attribute CanvasTextAlign textAlign; // (default: "start")
|
|
1488
1489
|
attribute CanvasTextBaseline textBaseline; // (default: "alphabetic")
|
package/package.json
CHANGED
package/ppa.idl
CHANGED
|
@@ -10,13 +10,12 @@ partial interface Navigator {
|
|
|
10
10
|
enum PrivateAttributionProtocol { "dap-12-histogram", "tee-00" };
|
|
11
11
|
|
|
12
12
|
dictionary PrivateAttributionAggregationService {
|
|
13
|
-
required USVString url;
|
|
14
13
|
required DOMString protocol;
|
|
15
14
|
};
|
|
16
15
|
|
|
17
16
|
[SecureContext, Exposed=Window]
|
|
18
17
|
interface PrivateAttributionAggregationServices {
|
|
19
|
-
readonly
|
|
18
|
+
readonly maplike<USVString, PrivateAttributionAggregationService>;
|
|
20
19
|
};
|
|
21
20
|
|
|
22
21
|
[SecureContext, Exposed=Window]
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
SecureContext]
|
|
8
8
|
interface PrivateAggregation {
|
|
9
9
|
undefined contributeToHistogram(PAHistogramContribution contribution);
|
|
10
|
+
undefined contributeToHistogramOnEvent(DOMString event,
|
|
11
|
+
record<DOMString, any> contribution);
|
|
10
12
|
undefined enableDebugMode(optional PADebugModeOptions options = {});
|
|
11
13
|
};
|
|
12
14
|
|
package/svg-paths.idl
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: SVG Paths (https://svgwg.org/specs/paths/)
|
|
5
|
+
|
|
6
|
+
[LegacyNoInterfaceObject, Exposed=Window]
|
|
7
|
+
interface SVGPathSegment {
|
|
8
|
+
attribute DOMString type;
|
|
9
|
+
attribute FrozenArray<float> values;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
dictionary SVGPathDataSettings {
|
|
13
|
+
boolean normalize = false;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
interface mixin SVGPathData {
|
|
17
|
+
sequence<SVGPathSegment> getPathData(optional SVGPathDataSettings settings = {});
|
|
18
|
+
undefined setPathData(sequence<SVGPathSegment> pathData);
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
[Exposed=Window]
|
|
22
|
+
interface SVGPathElement : SVGGeometryElement {
|
|
23
|
+
|
|
24
|
+
readonly attribute SVGAnimatedNumber pathLength;
|
|
25
|
+
|
|
26
|
+
float getTotalLength();
|
|
27
|
+
DOMPoint getPointAtLength(float distance);
|
|
28
|
+
SVGPathSegment? getPathSegmentAtLength(float distance);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
SVGPathElement includes SVGPathData;
|
package/turtledove.idl
CHANGED
|
@@ -220,12 +220,6 @@ dictionary PAExtendedHistogramContribution {
|
|
|
220
220
|
bigint filteringId = 0;
|
|
221
221
|
};
|
|
222
222
|
|
|
223
|
-
[Exposed=InterestGroupScriptRunnerGlobalScope]
|
|
224
|
-
partial interface PrivateAggregation {
|
|
225
|
-
undefined contributeToHistogramOnEvent(
|
|
226
|
-
DOMString event, PAExtendedHistogramContribution contribution);
|
|
227
|
-
};
|
|
228
|
-
|
|
229
223
|
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
230
224
|
interface ForDebuggingOnly {
|
|
231
225
|
undefined reportAdAuctionWin(USVString url);
|
package/webaudio.idl
CHANGED
|
@@ -80,7 +80,6 @@ interface AudioContext : BaseAudioContext {
|
|
|
80
80
|
readonly attribute double baseLatency;
|
|
81
81
|
readonly attribute double outputLatency;
|
|
82
82
|
[SecureContext] readonly attribute (DOMString or AudioSinkInfo) sinkId;
|
|
83
|
-
[SecureContext] readonly attribute AudioRenderCapacity renderCapacity;
|
|
84
83
|
attribute EventHandler onsinkchange;
|
|
85
84
|
attribute EventHandler onerror;
|
|
86
85
|
AudioTimestamp getOutputTimestamp ();
|
|
@@ -116,33 +115,6 @@ dictionary AudioTimestamp {
|
|
|
116
115
|
DOMHighResTimeStamp performanceTime;
|
|
117
116
|
};
|
|
118
117
|
|
|
119
|
-
[Exposed=Window]
|
|
120
|
-
interface AudioRenderCapacity : EventTarget {
|
|
121
|
-
undefined start(optional AudioRenderCapacityOptions options = {});
|
|
122
|
-
undefined stop();
|
|
123
|
-
attribute EventHandler onupdate;
|
|
124
|
-
};
|
|
125
|
-
|
|
126
|
-
dictionary AudioRenderCapacityOptions {
|
|
127
|
-
double updateInterval = 1;
|
|
128
|
-
};
|
|
129
|
-
|
|
130
|
-
[Exposed=Window]
|
|
131
|
-
interface AudioRenderCapacityEvent : Event {
|
|
132
|
-
constructor (DOMString type, optional AudioRenderCapacityEventInit eventInitDict = {});
|
|
133
|
-
readonly attribute double timestamp;
|
|
134
|
-
readonly attribute double averageLoad;
|
|
135
|
-
readonly attribute double peakLoad;
|
|
136
|
-
readonly attribute double underrunRatio;
|
|
137
|
-
};
|
|
138
|
-
|
|
139
|
-
dictionary AudioRenderCapacityEventInit : EventInit {
|
|
140
|
-
double timestamp = 0;
|
|
141
|
-
double averageLoad = 0;
|
|
142
|
-
double peakLoad = 0;
|
|
143
|
-
double underrunRatio = 0;
|
|
144
|
-
};
|
|
145
|
-
|
|
146
118
|
[Exposed=Window]
|
|
147
119
|
interface OfflineAudioContext : BaseAudioContext {
|
|
148
120
|
constructor(OfflineAudioContextOptions contextOptions);
|