@webref/idl 3.37.1 → 3.38.2

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/FedCM.idl CHANGED
@@ -20,7 +20,7 @@ enum IdentityCredentialRequestOptionsContext {
20
20
  };
21
21
 
22
22
  dictionary IdentityCredentialRequestOptions {
23
- sequence<IdentityProviderConfig> providers;
23
+ required sequence<IdentityProviderConfig> providers;
24
24
  IdentityCredentialRequestOptionsContext context = "signin";
25
25
  };
26
26
 
package/cookie-store.idl CHANGED
@@ -40,12 +40,14 @@ dictionary CookieInit {
40
40
  USVString? domain = null;
41
41
  USVString path = "/";
42
42
  CookieSameSite sameSite = "strict";
43
+ boolean partitioned = false;
43
44
  };
44
45
 
45
46
  dictionary CookieStoreDeleteOptions {
46
47
  required USVString name;
47
48
  USVString? domain = null;
48
49
  USVString path = "/";
50
+ boolean partitioned = false;
49
51
  };
50
52
 
51
53
  dictionary CookieListItem {
@@ -56,6 +58,7 @@ dictionary CookieListItem {
56
58
  DOMHighResTimeStamp? expires;
57
59
  boolean secure;
58
60
  CookieSameSite sameSite;
61
+ boolean partitioned;
59
62
  };
60
63
 
61
64
  typedef sequence<CookieListItem> CookieList;
package/css-typed-om.idl CHANGED
@@ -184,12 +184,17 @@ partial namespace CSS {
184
184
  CSSUnitValue percent(double value);
185
185
 
186
186
  // <length>
187
+ CSSUnitValue cap(double value);
188
+ CSSUnitValue ch(double value);
187
189
  CSSUnitValue em(double value);
188
190
  CSSUnitValue ex(double value);
189
- CSSUnitValue ch(double value);
190
191
  CSSUnitValue ic(double value);
191
- CSSUnitValue rem(double value);
192
192
  CSSUnitValue lh(double value);
193
+ CSSUnitValue rcap(double value);
194
+ CSSUnitValue rch(double value);
195
+ CSSUnitValue rem(double value);
196
+ CSSUnitValue rex(double value);
197
+ CSSUnitValue ric(double value);
193
198
  CSSUnitValue rlh(double value);
194
199
  CSSUnitValue vw(double value);
195
200
  CSSUnitValue vh(double value);
package/edit-context.idl CHANGED
@@ -69,11 +69,8 @@ interface TextUpdateEvent : Event {
69
69
  dictionary TextFormatInit {
70
70
  unsigned long rangeStart;
71
71
  unsigned long rangeEnd;
72
- DOMString textColor;
73
- DOMString backgroundColor;
74
72
  DOMString underlineStyle;
75
73
  DOMString underlineThickness;
76
- DOMString underlineColor;
77
74
  };
78
75
 
79
76
  [Exposed=Window]
@@ -81,11 +78,8 @@ interface TextFormat {
81
78
  constructor(optional TextFormatInit options = {});
82
79
  readonly attribute unsigned long rangeStart;
83
80
  readonly attribute unsigned long rangeEnd;
84
- readonly attribute DOMString textColor;
85
- readonly attribute DOMString backgroundColor;
86
81
  readonly attribute DOMString underlineStyle;
87
82
  readonly attribute DOMString underlineThickness;
88
- readonly attribute DOMString underlineColor;
89
83
  };
90
84
 
91
85
  dictionary TextFormatUpdateEventInit : EventInit {
@@ -3,7 +3,12 @@
3
3
  // (https://github.com/w3c/webref)
4
4
  // Source: Element Capture (https://screen-share.github.io/element-capture/)
5
5
 
6
+ [Exposed=(Window,Worker), Serializable]
7
+ interface RestrictionTarget {
8
+ [Exposed=Window, SecureContext] static Promise<RestrictionTarget> fromElement(Element element);
9
+ };
10
+
6
11
  [Exposed = Window]
7
12
  partial interface BrowserCaptureMediaStreamTrack {
8
- Promise<undefined> restrictTo(CropTarget? cropTarget);
13
+ Promise<undefined> restrictTo(RestrictionTarget? RestrictionTarget);
9
14
  };
package/fenced-frame.idl CHANGED
@@ -18,7 +18,7 @@ enum OpaqueProperty {"opaque"};
18
18
  typedef (unsigned long or OpaqueProperty) FencedFrameConfigSize;
19
19
  typedef USVString FencedFrameConfigURL;
20
20
 
21
- [Exposed=Window]
21
+ [Exposed=Window, Serializable]
22
22
  interface FencedFrameConfig {
23
23
  readonly attribute FencedFrameConfigSize? containerWidth;
24
24
  readonly attribute FencedFrameConfigSize? containerHeight;
@@ -40,6 +40,7 @@ dictionary FenceEvent {
40
40
  required DOMString eventType;
41
41
  required DOMString eventData;
42
42
  required sequence<FenceReportingDestination> destination;
43
+ boolean once = false;
43
44
  };
44
45
 
45
46
  typedef (FenceEvent or DOMString) ReportEventType;
package/html.idl CHANGED
@@ -1662,6 +1662,18 @@ partial interface Navigator {
1662
1662
  [SameObject] readonly attribute UserActivation userActivation;
1663
1663
  };
1664
1664
 
1665
+ [Exposed=Window]
1666
+ interface ToggleEvent : Event {
1667
+ constructor(DOMString type, optional ToggleEventInit eventInitDict = {});
1668
+ readonly attribute DOMString oldState;
1669
+ readonly attribute DOMString newState;
1670
+ };
1671
+
1672
+ dictionary ToggleEventInit : EventInit {
1673
+ DOMString oldState = "";
1674
+ DOMString newState = "";
1675
+ };
1676
+
1665
1677
  dictionary FocusOptions {
1666
1678
  boolean preventScroll = false;
1667
1679
  boolean focusVisible;
@@ -1729,18 +1741,6 @@ interface mixin PopoverInvokerElement {
1729
1741
  [CEReactions] attribute DOMString popoverTargetAction;
1730
1742
  };
1731
1743
 
1732
- [Exposed=Window]
1733
- interface ToggleEvent : Event {
1734
- constructor(DOMString type, optional ToggleEventInit eventInitDict = {});
1735
- readonly attribute DOMString oldState;
1736
- readonly attribute DOMString newState;
1737
- };
1738
-
1739
- dictionary ToggleEventInit : EventInit {
1740
- DOMString oldState = "";
1741
- DOMString newState = "";
1742
- };
1743
-
1744
1744
  [Global=Window,
1745
1745
  Exposed=Window,
1746
1746
  LegacyUnenumerableNamedProperties]
@@ -1934,6 +1934,7 @@ interface NavigateEvent : Event {
1934
1934
  readonly attribute FormData? formData;
1935
1935
  readonly attribute DOMString? downloadRequest;
1936
1936
  readonly attribute any info;
1937
+ readonly attribute boolean hasUAVisualTransition;
1937
1938
 
1938
1939
  undefined intercept(optional NavigationInterceptOptions options = {});
1939
1940
  undefined scroll();
@@ -1949,6 +1950,7 @@ dictionary NavigateEventInit : EventInit {
1949
1950
  FormData? formData = null;
1950
1951
  DOMString? downloadRequest = null;
1951
1952
  any info;
1953
+ boolean hasUAVisualTransition = false;
1952
1954
  };
1953
1955
 
1954
1956
  dictionary NavigationInterceptOptions {
@@ -1998,10 +2000,12 @@ interface PopStateEvent : Event {
1998
2000
  constructor(DOMString type, optional PopStateEventInit eventInitDict = {});
1999
2001
 
2000
2002
  readonly attribute any state;
2003
+ readonly attribute boolean hasUAVisualTransition;
2001
2004
  };
2002
2005
 
2003
2006
  dictionary PopStateEventInit : EventInit {
2004
2007
  any state = null;
2008
+ boolean hasUAVisualTransition = false;
2005
2009
  };
2006
2010
 
2007
2011
  [Exposed=Window]
@@ -239,10 +239,6 @@ typedef (DOMString or
239
239
  sequence<DOMString> or
240
240
  ConstrainDOMStringParameters) ConstrainDOMString;
241
241
 
242
- dictionary DevicePermissionDescriptor : PermissionDescriptor {
243
- DOMString deviceId;
244
- };
245
-
246
- dictionary CameraDevicePermissionDescriptor : DevicePermissionDescriptor {
242
+ dictionary CameraDevicePermissionDescriptor : PermissionDescriptor {
247
243
  boolean panTiltZoom = false;
248
244
  };
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.37.1",
4
+ "version": "3.38.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -12,6 +12,6 @@
12
12
  "license": "MIT",
13
13
  "main": "index.js",
14
14
  "peerDependencies": {
15
- "webidl2": "^24.4.0"
15
+ "webidl2": "^24.4.1"
16
16
  }
17
17
  }
@@ -0,0 +1,15 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: Private Network Access (https://wicg.github.io/private-network-access/)
5
+
6
+ dictionary PrivateNetworkAccessPermissionDescriptor
7
+ : PermissionDescriptor {
8
+ DOMString id;
9
+ };
10
+
11
+ partial dictionary RequestInit {
12
+ RequestTargetAddressSpace targetAddressSpace;
13
+ };
14
+
15
+ enum RequestTargetAddressSpace { "private", "local" };
@@ -17,5 +17,5 @@
17
17
  };
18
18
 
19
19
  partial interface XRFrame {
20
- readonly attribute XRMeshSet detectedMeshs;
20
+ readonly attribute XRMeshSet detectedMeshes;
21
21
  };
@@ -34,6 +34,11 @@ enum SurfaceSwitchingPreferenceEnum {
34
34
  "exclude"
35
35
  };
36
36
 
37
+ enum MonitorTypeSurfacesEnum {
38
+ "include",
39
+ "exclude"
40
+ };
41
+
37
42
  dictionary DisplayMediaStreamOptions {
38
43
  (boolean or MediaTrackConstraints) video = true;
39
44
  (boolean or MediaTrackConstraints) audio = false;
@@ -41,6 +46,7 @@ dictionary DisplayMediaStreamOptions {
41
46
  SelfCapturePreferenceEnum selfBrowserSurface;
42
47
  SystemAudioPreferenceEnum systemAudio;
43
48
  SurfaceSwitchingPreferenceEnum surfaceSwitching;
49
+ MonitorTypeSurfacesEnum monitorTypeSurfaces;
44
50
  };
45
51
 
46
52
  partial dictionary MediaTrackSupportedConstraints {
package/serial.idl CHANGED
@@ -23,11 +23,13 @@ interface Serial : EventTarget {
23
23
 
24
24
  dictionary SerialPortRequestOptions {
25
25
  sequence<SerialPortFilter> filters;
26
+ sequence<BluetoothServiceUUID> allowedBluetoothServiceClassIds;
26
27
  };
27
28
 
28
29
  dictionary SerialPortFilter {
29
30
  unsigned short usbVendorId;
30
31
  unsigned short usbProductId;
32
+ BluetoothServiceUUID bluetoothServiceClassId;
31
33
  };
32
34
 
33
35
  [Exposed=(DedicatedWorker,Window), SecureContext]
@@ -49,6 +51,7 @@ interface SerialPort : EventTarget {
49
51
  dictionary SerialPortInfo {
50
52
  unsigned short usbVendorId;
51
53
  unsigned short usbProductId;
54
+ BluetoothServiceUUID bluetoothServiceClassId;
52
55
  };
53
56
 
54
57
  dictionary SerialOptions {
@@ -11,6 +11,8 @@ interface SharedStorageWorklet : Worklet {
11
11
  interface SharedStorageWorkletGlobalScope : WorkletGlobalScope {
12
12
  undefined register(DOMString name,
13
13
  SharedStorageOperationConstructor operationCtor);
14
+
15
+ readonly attribute WorkletSharedStorage sharedStorage;
14
16
  };
15
17
 
16
18
  callback SharedStorageOperationConstructor =
@@ -70,6 +72,10 @@ dictionary SharedStorageUrlWithMetadata {
70
72
  object reportingMetadata;
71
73
  };
72
74
 
75
+ partial interface Window {
76
+ [SecureContext] readonly attribute WindowSharedStorage? sharedStorage;
77
+ };
78
+
73
79
  [Exposed=(SharedStorageWorklet)]
74
80
  interface WorkletSharedStorage : SharedStorage {
75
81
  Promise<DOMString> get(DOMString key);
package/turtledove.idl CHANGED
@@ -87,7 +87,7 @@ interface InterestGroupBiddingScriptRunnerGlobalScope
87
87
  : InterestGroupScriptRunnerGlobalScope {
88
88
  boolean setBid(optional GenerateBidOutput generateBidOutput = {});
89
89
  undefined setPriority(double priority);
90
- undefined setPrioritySignalsOverride(DOMString key, double priority);
90
+ undefined setPrioritySignalsOverride(DOMString key, optional double? priority);
91
91
  };
92
92
 
93
93
  dictionary AdRender {
@@ -138,6 +138,7 @@ dictionary BiddingBrowserSignals {
138
138
  required USVString seller;
139
139
  required long joinCount;
140
140
  required long bidCount;
141
+ required long recency;
141
142
 
142
143
  USVString topLevelSeller;
143
144
  sequence<PreviousWin> prevWinsMs;
package/webauthn.idl CHANGED
@@ -56,6 +56,7 @@ dictionary AuthenticatorAssertionResponseJSON {
56
56
  required Base64URLString authenticatorData;
57
57
  required Base64URLString signature;
58
58
  Base64URLString userHandle;
59
+ Base64URLString attestationObject;
59
60
  };
60
61
 
61
62
  dictionary AuthenticationExtensionsClientOutputsJSON {
@@ -89,7 +90,9 @@ dictionary PublicKeyCredentialCreationOptionsJSON {
89
90
  unsigned long timeout;
90
91
  sequence<PublicKeyCredentialDescriptorJSON> excludeCredentials = [];
91
92
  AuthenticatorSelectionCriteria authenticatorSelection;
93
+ sequence<DOMString> hints = [];
92
94
  DOMString attestation = "none";
95
+ sequence<DOMString> attestationFormats = [];
93
96
  AuthenticationExtensionsClientInputsJSON extensions;
94
97
  };
95
98
 
@@ -118,6 +121,9 @@ dictionary PublicKeyCredentialRequestOptionsJSON {
118
121
  DOMString rpId;
119
122
  sequence<PublicKeyCredentialDescriptorJSON> allowCredentials = [];
120
123
  DOMString userVerification = "preferred";
124
+ sequence<DOMString> hints = [];
125
+ DOMString attestation = "none";
126
+ sequence<DOMString> attestationFormats = [];
121
127
  AuthenticationExtensionsClientInputsJSON extensions;
122
128
  };
123
129
 
@@ -158,6 +164,7 @@ dictionary PublicKeyCredentialCreationOptions {
158
164
  unsigned long timeout;
159
165
  sequence<PublicKeyCredentialDescriptor> excludeCredentials = [];
160
166
  AuthenticatorSelectionCriteria authenticatorSelection;
167
+ sequence<DOMString> hints = [];
161
168
  DOMString attestation = "none";
162
169
  sequence<DOMString> attestationFormats = [];
163
170
  AuthenticationExtensionsClientInputs extensions;
@@ -207,6 +214,7 @@ dictionary PublicKeyCredentialRequestOptions {
207
214
  USVString rpId;
208
215
  sequence<PublicKeyCredentialDescriptor> allowCredentials = [];
209
216
  DOMString userVerification = "preferred";
217
+ sequence<DOMString> hints = [];
210
218
  DOMString attestation = "none";
211
219
  sequence<DOMString> attestationFormats = [];
212
220
  AuthenticationExtensionsClientInputs extensions;
@@ -260,6 +268,12 @@ enum UserVerificationRequirement {
260
268
  "discouraged"
261
269
  };
262
270
 
271
+ enum PublicKeyCredentialHints {
272
+ "security-key",
273
+ "client-device",
274
+ "hybrid",
275
+ };
276
+
263
277
  partial dictionary AuthenticationExtensionsClientInputs {
264
278
  USVString appid;
265
279
  };
@@ -15,3 +15,11 @@ enum HevcBitstreamFormat {
15
15
  "annexb",
16
16
  "hevc",
17
17
  };
18
+
19
+ partial dictionary VideoEncoderEncodeOptions {
20
+ VideoEncoderEncodeOptionsForHevc hevc;
21
+ };
22
+
23
+ dictionary VideoEncoderEncodeOptionsForHevc {
24
+ unsigned short? quantizer;
25
+ };
package/webcodecs.idl CHANGED
@@ -161,7 +161,7 @@ dictionary AudioEncoderConfig {
161
161
  [EnforceRange] unsigned long sampleRate;
162
162
  [EnforceRange] unsigned long numberOfChannels;
163
163
  [EnforceRange] unsigned long long bitrate;
164
- BitrateMode bitrateMode;
164
+ BitrateMode bitrateMode = "variable";
165
165
  };
166
166
 
167
167
  dictionary VideoEncoderConfig {
package/webgpu.idl CHANGED
@@ -307,6 +307,7 @@ enum GPUTextureFormat {
307
307
  "bgra8unorm-srgb",
308
308
  // Packed 32-bit formats
309
309
  "rgb9e5ufloat",
310
+ "rgb10a2uint",
310
311
  "rgb10a2unorm",
311
312
  "rg11b10ufloat",
312
313
 
@@ -877,6 +878,8 @@ dictionary GPUImageCopyTextureTagged
877
878
  };
878
879
 
879
880
  typedef (ImageBitmap or
881
+ ImageData or
882
+ HTMLImageElement or
880
883
  HTMLVideoElement or
881
884
  VideoFrame or
882
885
  HTMLCanvasElement or
package/webhid.idl CHANGED
@@ -17,7 +17,7 @@ interface HID : EventTarget {
17
17
  attribute EventHandler onconnect;
18
18
  attribute EventHandler ondisconnect;
19
19
  Promise<sequence<HIDDevice>> getDevices();
20
- Promise<sequence<HIDDevice>> requestDevice(
20
+ [Exposed=Window] Promise<sequence<HIDDevice>> requestDevice(
21
21
  HIDDeviceRequestOptions options);
22
22
  };
23
23
 
package/webnn.idl CHANGED
@@ -65,7 +65,8 @@ dictionary MLOperandDescriptor {
65
65
  interface MLOperand {};
66
66
 
67
67
  [SecureContext, Exposed=(Window, DedicatedWorker)]
68
- interface MLActivation {};
68
+ interface MLActivation {
69
+ };
69
70
 
70
71
  typedef record<DOMString, ArrayBufferView> MLNamedArrayBufferViews;
71
72
 
@@ -162,7 +163,7 @@ dictionary MLClampOptions {
162
163
  };
163
164
 
164
165
  partial interface MLGraphBuilder {
165
- MLOperand clamp(MLOperand x, optional MLClampOptions options = {});
166
+ MLOperand clamp(MLOperand operand, optional MLClampOptions options = {});
166
167
  MLActivation clamp(optional MLClampOptions options = {});
167
168
  };
168
169
 
@@ -235,15 +236,15 @@ partial interface MLGraphBuilder {
235
236
  };
236
237
 
237
238
  partial interface MLGraphBuilder {
238
- MLOperand abs(MLOperand x);
239
- MLOperand ceil(MLOperand x);
240
- MLOperand cos(MLOperand x);
241
- MLOperand exp(MLOperand x);
242
- MLOperand floor(MLOperand x);
243
- MLOperand log(MLOperand x);
244
- MLOperand neg(MLOperand x);
245
- MLOperand sin(MLOperand x);
246
- MLOperand tan(MLOperand x);
239
+ MLOperand abs(MLOperand input);
240
+ MLOperand ceil(MLOperand input);
241
+ MLOperand cos(MLOperand input);
242
+ MLOperand exp(MLOperand input);
243
+ MLOperand floor(MLOperand input);
244
+ MLOperand log(MLOperand input);
245
+ MLOperand neg(MLOperand input);
246
+ MLOperand sin(MLOperand input);
247
+ MLOperand tan(MLOperand input);
247
248
  };
248
249
 
249
250
  dictionary MLEluOptions {
@@ -251,7 +252,7 @@ dictionary MLEluOptions {
251
252
  };
252
253
 
253
254
  partial interface MLGraphBuilder {
254
- MLOperand elu(MLOperand x, optional MLEluOptions options = {});
255
+ MLOperand elu(MLOperand input, optional MLEluOptions options = {});
255
256
  MLActivation elu(optional MLEluOptions options = {});
256
257
  };
257
258
 
@@ -315,12 +316,12 @@ dictionary MLHardSigmoidOptions {
315
316
  };
316
317
 
317
318
  partial interface MLGraphBuilder {
318
- MLOperand hardSigmoid(MLOperand x, optional MLHardSigmoidOptions options = {});
319
+ MLOperand hardSigmoid(MLOperand input, optional MLHardSigmoidOptions options = {});
319
320
  MLActivation hardSigmoid(optional MLHardSigmoidOptions options = {});
320
321
  };
321
322
 
322
323
  partial interface MLGraphBuilder {
323
- MLOperand hardSwish(MLOperand x);
324
+ MLOperand hardSwish(MLOperand input);
324
325
  MLActivation hardSwish();
325
326
  };
326
327
 
@@ -341,7 +342,7 @@ dictionary MLLeakyReluOptions {
341
342
  };
342
343
 
343
344
  partial interface MLGraphBuilder {
344
- MLOperand leakyRelu(MLOperand x, optional MLLeakyReluOptions options = {});
345
+ MLOperand leakyRelu(MLOperand input, optional MLLeakyReluOptions options = {});
345
346
  MLActivation leakyRelu(optional MLLeakyReluOptions options = {});
346
347
  };
347
348
 
@@ -351,7 +352,7 @@ dictionary MLLinearOptions {
351
352
  };
352
353
 
353
354
  partial interface MLGraphBuilder {
354
- MLOperand linear(MLOperand x, optional MLLinearOptions options = {});
355
+ MLOperand linear(MLOperand input, optional MLLinearOptions options = {});
355
356
  MLActivation linear(optional MLLinearOptions options = {});
356
357
  };
357
358
 
@@ -438,7 +439,7 @@ partial interface MLGraphBuilder {
438
439
  };
439
440
 
440
441
  partial interface MLGraphBuilder {
441
- MLOperand prelu(MLOperand x, MLOperand slope);
442
+ MLOperand prelu(MLOperand input, MLOperand slope);
442
443
  };
443
444
 
444
445
  dictionary MLReduceOptions {
@@ -460,7 +461,7 @@ partial interface MLGraphBuilder {
460
461
  };
461
462
 
462
463
  partial interface MLGraphBuilder {
463
- MLOperand relu(MLOperand x);
464
+ MLOperand relu(MLOperand input);
464
465
  MLActivation relu();
465
466
  };
466
467
 
@@ -485,7 +486,7 @@ partial interface MLGraphBuilder {
485
486
  };
486
487
 
487
488
  partial interface MLGraphBuilder {
488
- MLOperand sigmoid(MLOperand x);
489
+ MLOperand sigmoid(MLOperand input);
489
490
  MLActivation sigmoid();
490
491
  };
491
492
 
@@ -494,7 +495,7 @@ partial interface MLGraphBuilder {
494
495
  };
495
496
 
496
497
  partial interface MLGraphBuilder {
497
- MLOperand softmax(MLOperand x);
498
+ MLOperand softmax(MLOperand input);
498
499
  MLActivation softmax();
499
500
  };
500
501
 
@@ -503,12 +504,12 @@ dictionary MLSoftplusOptions {
503
504
  };
504
505
 
505
506
  partial interface MLGraphBuilder {
506
- MLOperand softplus(MLOperand x, optional MLSoftplusOptions options = {});
507
+ MLOperand softplus(MLOperand input, optional MLSoftplusOptions options = {});
507
508
  MLActivation softplus(optional MLSoftplusOptions options = {});
508
509
  };
509
510
 
510
511
  partial interface MLGraphBuilder {
511
- MLOperand softsign(MLOperand x);
512
+ MLOperand softsign(MLOperand input);
512
513
  MLActivation softsign();
513
514
  };
514
515
 
@@ -531,7 +532,7 @@ partial interface MLGraphBuilder {
531
532
  };
532
533
 
533
534
  partial interface MLGraphBuilder {
534
- MLOperand tanh(MLOperand x);
535
+ MLOperand tanh(MLOperand input);
535
536
  MLActivation tanh();
536
537
  };
537
538
 
package/webrtc-stats.idl CHANGED
@@ -44,7 +44,6 @@ dictionary RTCReceivedRtpStreamStats : RTCRtpStreamStats {
44
44
 
45
45
  dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
46
46
  required DOMString trackIdentifier;
47
- required DOMString kind;
48
47
  DOMString mid;
49
48
  DOMString remoteId;
50
49
  unsigned long framesDecoded;
@@ -95,6 +94,8 @@ dictionary RTCInboundRtpStreamStats : RTCReceivedRtpStreamStats {
95
94
  double totalAssemblyTime;
96
95
  unsigned long long retransmittedPacketsReceived;
97
96
  unsigned long long retransmittedBytesReceived;
97
+ unsigned long rtxSsrc;
98
+ unsigned long fecSsrc;
98
99
  };
99
100
 
100
101
  dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {
@@ -118,6 +119,7 @@ dictionary RTCOutboundRtpStreamStats : RTCSentRtpStreamStats {
118
119
  unsigned long long headerBytesSent;
119
120
  unsigned long long retransmittedPacketsSent;
120
121
  unsigned long long retransmittedBytesSent;
122
+ unsigned long rtxSsrc;
121
123
  double targetBitrate;
122
124
  unsigned long long totalEncodedBytesTarget;
123
125
  unsigned long frameWidth;
package/close-watcher.idl DELETED
@@ -1,19 +0,0 @@
1
- // GENERATED CONTENT - DO NOT EDIT
2
- // Content was automatically extracted by Reffy into webref
3
- // (https://github.com/w3c/webref)
4
- // Source: Close Watcher API (https://wicg.github.io/close-watcher/)
5
-
6
- [Exposed=Window]
7
- interface CloseWatcher : EventTarget {
8
- constructor(optional CloseWatcherOptions options = {});
9
-
10
- undefined destroy();
11
- undefined close();
12
-
13
- attribute EventHandler oncancel;
14
- attribute EventHandler onclose;
15
- };
16
-
17
- dictionary CloseWatcherOptions {
18
- AbortSignal signal;
19
- };
package/gpc-spec.idl DELETED
@@ -1,10 +0,0 @@
1
- // GENERATED CONTENT - DO NOT EDIT
2
- // Content was automatically extracted by Reffy into webref
3
- // (https://github.com/w3c/webref)
4
- // Source: Global Privacy Control (GPC) (https://privacycg.github.io/gpc-spec/)
5
-
6
- interface mixin GlobalPrivacyControl {
7
- readonly attribute boolean globalPrivacyControl;
8
- };
9
- Navigator includes GlobalPrivacyControl;
10
- WorkerNavigator includes GlobalPrivacyControl;