@webref/idl 3.60.2 → 3.60.3

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/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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.60.2",
4
+ "version": "3.60.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -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/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);