@types/web 0.0.149 → 0.0.151

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/index.d.ts CHANGED
@@ -580,6 +580,11 @@ interface GetAnimationsOptions {
580
580
  subtree?: boolean;
581
581
  }
582
582
 
583
+ interface GetHTMLOptions {
584
+ serializableShadowRoots?: boolean;
585
+ shadowRoots?: ShadowRoot[];
586
+ }
587
+
583
588
  interface GetNotificationOptions {
584
589
  tag?: string;
585
590
  }
@@ -842,6 +847,10 @@ interface MediaKeySystemMediaCapability {
842
847
  robustness?: string;
843
848
  }
844
849
 
850
+ interface MediaKeysPolicy {
851
+ minHdcpVersion?: string;
852
+ }
853
+
845
854
  interface MediaMetadataInit {
846
855
  album?: string;
847
856
  artist?: string;
@@ -1181,6 +1190,10 @@ interface PointerEventInit extends MouseEventInit {
1181
1190
  width?: number;
1182
1191
  }
1183
1192
 
1193
+ interface PointerLockOptions {
1194
+ unadjustedMovement?: boolean;
1195
+ }
1196
+
1184
1197
  interface PopStateEventInit extends EventInit {
1185
1198
  state?: any;
1186
1199
  }
@@ -1364,11 +1377,6 @@ interface RTCIceCandidateInit {
1364
1377
  usernameFragment?: string | null;
1365
1378
  }
1366
1379
 
1367
- interface RTCIceCandidatePair {
1368
- local: RTCIceCandidate;
1369
- remote: RTCIceCandidate;
1370
- }
1371
-
1372
1380
  interface RTCIceCandidatePairStats extends RTCStats {
1373
1381
  availableIncomingBitrate?: number;
1374
1382
  availableOutgoingBitrate?: number;
@@ -1500,7 +1508,7 @@ interface RTCRtcpParameters {
1500
1508
  }
1501
1509
 
1502
1510
  interface RTCRtpCapabilities {
1503
- codecs: RTCRtpCodecCapability[];
1511
+ codecs: RTCRtpCodec[];
1504
1512
  headerExtensions: RTCRtpHeaderExtensionCapability[];
1505
1513
  }
1506
1514
 
@@ -1511,9 +1519,6 @@ interface RTCRtpCodec {
1511
1519
  sdpFmtpLine?: string;
1512
1520
  }
1513
1521
 
1514
- interface RTCRtpCodecCapability extends RTCRtpCodec {
1515
- }
1516
-
1517
1522
  interface RTCRtpCodecParameters extends RTCRtpCodec {
1518
1523
  payloadType: number;
1519
1524
  }
@@ -2208,7 +2213,9 @@ interface ARIAMixin {
2208
2213
  ariaAtomic: string | null;
2209
2214
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
2210
2215
  ariaAutoComplete: string | null;
2216
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) */
2211
2217
  ariaBrailleLabel: string | null;
2218
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) */
2212
2219
  ariaBrailleRoleDescription: string | null;
2213
2220
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
2214
2221
  ariaBusy: string | null;
@@ -2791,7 +2798,6 @@ declare var AudioNode: {
2791
2798
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam)
2792
2799
  */
2793
2800
  interface AudioParam {
2794
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/automationRate) */
2795
2801
  automationRate: AutomationRate;
2796
2802
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/defaultValue) */
2797
2803
  readonly defaultValue: number;
@@ -3079,7 +3085,11 @@ declare var BaseAudioContext: {
3079
3085
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
3080
3086
  */
3081
3087
  interface BeforeUnloadEvent extends Event {
3082
- /** @deprecated */
3088
+ /**
3089
+ * @deprecated
3090
+ *
3091
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
3092
+ */
3083
3093
  returnValue: any;
3084
3094
  }
3085
3095
 
@@ -3387,7 +3397,7 @@ interface CSSImportRule extends CSSRule {
3387
3397
  readonly layerName: string | null;
3388
3398
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media) */
3389
3399
  readonly media: MediaList;
3390
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet) */
3400
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/stylesheet) */
3391
3401
  readonly styleSheet: CSSStyleSheet | null;
3392
3402
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText) */
3393
3403
  readonly supportsText: string | null;
@@ -3680,7 +3690,7 @@ declare var CSSPerspective: {
3680
3690
  interface CSSPropertyRule extends CSSRule {
3681
3691
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/inherits) */
3682
3692
  readonly inherits: boolean;
3683
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialValue) */
3693
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialvalue) */
3684
3694
  readonly initialValue: string | null;
3685
3695
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/name) */
3686
3696
  readonly name: string;
@@ -3793,8 +3803,11 @@ declare var CSSScale: {
3793
3803
  new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
3794
3804
  };
3795
3805
 
3806
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule) */
3796
3807
  interface CSSScopeRule extends CSSGroupingRule {
3808
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/end) */
3797
3809
  readonly end: string | null;
3810
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/start) */
3798
3811
  readonly start: string | null;
3799
3812
  }
3800
3813
 
@@ -3917,7 +3930,6 @@ interface CSSStyleDeclaration {
3917
3930
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
3918
3931
  backgroundSize: string;
3919
3932
  baselineShift: string;
3920
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/baseline-source) */
3921
3933
  baselineSource: string;
3922
3934
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
3923
3935
  blockSize: string;
@@ -4099,11 +4111,9 @@ interface CSSStyleDeclaration {
4099
4111
  columns: string;
4100
4112
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
4101
4113
  contain: string;
4102
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size) */
4103
4114
  containIntrinsicBlockSize: string;
4104
4115
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
4105
4116
  containIntrinsicHeight: string;
4106
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size) */
4107
4117
  containIntrinsicInlineSize: string;
4108
4118
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
4109
4119
  containIntrinsicSize: string;
@@ -4620,7 +4630,9 @@ interface CSSStyleDeclaration {
4620
4630
  textUnderlinePosition: string;
4621
4631
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
4622
4632
  textWrap: string;
4633
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-mode) */
4623
4634
  textWrapMode: string;
4635
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-style) */
4624
4636
  textWrapStyle: string;
4625
4637
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
4626
4638
  top: string;
@@ -4655,6 +4667,8 @@ interface CSSStyleDeclaration {
4655
4667
  vectorEffect: string;
4656
4668
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
4657
4669
  verticalAlign: string;
4670
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
4671
+ viewTransitionName: string;
4658
4672
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
4659
4673
  visibility: string;
4660
4674
  /**
@@ -5761,6 +5775,7 @@ interface ClipboardItem {
5761
5775
  declare var ClipboardItem: {
5762
5776
  prototype: ClipboardItem;
5763
5777
  new(items: Record<string, string | Blob | PromiseLike<string | Blob>>, options?: ClipboardItemOptions): ClipboardItem;
5778
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/supports_static) */
5764
5779
  supports(type: string): boolean;
5765
5780
  };
5766
5781
 
@@ -6163,9 +6178,7 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6163
6178
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6164
6179
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6165
6180
  rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6166
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
6167
6181
  scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6168
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scaleSelf) */
6169
6182
  scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6170
6183
  setMatrixValue(transformList: string): DOMMatrix;
6171
6184
  skewXSelf(sx?: number): DOMMatrix;
@@ -6189,88 +6202,48 @@ declare var WebKitCSSMatrix: typeof DOMMatrix;
6189
6202
 
6190
6203
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly) */
6191
6204
  interface DOMMatrixReadOnly {
6192
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/a) */
6193
6205
  readonly a: number;
6194
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/b) */
6195
6206
  readonly b: number;
6196
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/c) */
6197
6207
  readonly c: number;
6198
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/d) */
6199
6208
  readonly d: number;
6200
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/e) */
6201
6209
  readonly e: number;
6202
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/f) */
6203
6210
  readonly f: number;
6204
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
6205
6211
  readonly is2D: boolean;
6206
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
6207
6212
  readonly isIdentity: boolean;
6208
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m11) */
6209
6213
  readonly m11: number;
6210
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m12) */
6211
6214
  readonly m12: number;
6212
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m13) */
6213
6215
  readonly m13: number;
6214
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m14) */
6215
6216
  readonly m14: number;
6216
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m21) */
6217
6217
  readonly m21: number;
6218
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m22) */
6219
6218
  readonly m22: number;
6220
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m23) */
6221
6219
  readonly m23: number;
6222
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m24) */
6223
6220
  readonly m24: number;
6224
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m31) */
6225
6221
  readonly m31: number;
6226
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m32) */
6227
6222
  readonly m32: number;
6228
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m33) */
6229
6223
  readonly m33: number;
6230
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m34) */
6231
6224
  readonly m34: number;
6232
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m41) */
6233
6225
  readonly m41: number;
6234
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m42) */
6235
6226
  readonly m42: number;
6236
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m43) */
6237
6227
  readonly m43: number;
6238
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m44) */
6239
6228
  readonly m44: number;
6240
6229
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
6241
6230
  flipX(): DOMMatrix;
6242
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY) */
6243
6231
  flipY(): DOMMatrix;
6244
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6245
6232
  inverse(): DOMMatrix;
6246
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6247
6233
  multiply(other?: DOMMatrixInit): DOMMatrix;
6248
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
6249
6234
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6250
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
6251
6235
  rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6252
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
6253
6236
  rotateFromVector(x?: number, y?: number): DOMMatrix;
6254
6237
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
6255
6238
  scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6256
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
6257
6239
  scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6258
- /**
6259
- * @deprecated
6260
- *
6261
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scaleNonUniform)
6262
- */
6240
+ /** @deprecated */
6263
6241
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6264
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
6265
6242
  skewX(sx?: number): DOMMatrix;
6266
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
6267
6243
  skewY(sy?: number): DOMMatrix;
6268
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
6269
6244
  toFloat32Array(): Float32Array;
6270
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
6271
6245
  toFloat64Array(): Float64Array;
6272
6246
  toJSON(): any;
6273
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
6274
6247
  transformPoint(point?: DOMPointInit): DOMPoint;
6275
6248
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
6276
6249
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6342,7 +6315,6 @@ interface DOMPointReadOnly {
6342
6315
  readonly y: number;
6343
6316
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
6344
6317
  readonly z: number;
6345
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
6346
6318
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
6347
6319
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
6348
6320
  toJSON(): any;
@@ -6357,15 +6329,10 @@ declare var DOMPointReadOnly: {
6357
6329
 
6358
6330
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad) */
6359
6331
  interface DOMQuad {
6360
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1) */
6361
6332
  readonly p1: DOMPoint;
6362
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2) */
6363
6333
  readonly p2: DOMPoint;
6364
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3) */
6365
6334
  readonly p3: DOMPoint;
6366
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4) */
6367
6335
  readonly p4: DOMPoint;
6368
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds) */
6369
6336
  getBounds(): DOMRect;
6370
6337
  toJSON(): any;
6371
6338
  }
@@ -6388,6 +6355,7 @@ interface DOMRect extends DOMRectReadOnly {
6388
6355
  declare var DOMRect: {
6389
6356
  prototype: DOMRect;
6390
6357
  new(x?: number, y?: number, width?: number, height?: number): DOMRect;
6358
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static) */
6391
6359
  fromRect(other?: DOMRectInit): DOMRect;
6392
6360
  };
6393
6361
 
@@ -7132,11 +7100,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7132
7100
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptNode)
7133
7101
  */
7134
7102
  adoptNode<T extends Node>(node: T): T;
7135
- /**
7136
- * @deprecated
7137
- *
7138
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/captureEvents)
7139
- */
7103
+ /** @deprecated */
7140
7104
  captureEvents(): void;
7141
7105
  /** @deprecated */
7142
7106
  caretRangeFromPoint(x: number, y: number): Range | null;
@@ -7427,8 +7391,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7427
7391
  * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.
7428
7392
  * @param commandId String that specifies a command identifier.
7429
7393
  * @deprecated
7430
- *
7431
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandIndeterm)
7432
7394
  */
7433
7395
  queryCommandIndeterm(commandId: string): boolean;
7434
7396
  /**
@@ -7451,18 +7413,14 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7451
7413
  * Returns the current value of the document, range, or current selection for the given command.
7452
7414
  * @param commandId String that specifies a command identifier.
7453
7415
  * @deprecated
7454
- *
7455
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandValue)
7456
7416
  */
7457
7417
  queryCommandValue(commandId: string): string;
7458
- /**
7459
- * @deprecated
7460
- *
7461
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/releaseEvents)
7462
- */
7418
+ /** @deprecated */
7463
7419
  releaseEvents(): void;
7464
7420
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess) */
7465
7421
  requestStorageAccess(): Promise<void>;
7422
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/startViewTransition) */
7423
+ startViewTransition(callbackOptions?: UpdateCallback): ViewTransition;
7466
7424
  /**
7467
7425
  * Writes one or more HTML expressions to a document in the specified window.
7468
7426
  * @param content Specifies the text and HTML tags to write.
@@ -7486,6 +7444,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7486
7444
  declare var Document: {
7487
7445
  prototype: Document;
7488
7446
  new(): Document;
7447
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static) */
7489
7448
  parseHTMLUnsafe(html: string): Document;
7490
7449
  };
7491
7450
 
@@ -7854,6 +7813,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7854
7813
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
7855
7814
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
7856
7815
  getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
7816
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML) */
7817
+ getHTML(options?: GetHTMLOptions): string;
7857
7818
  /**
7858
7819
  * Returns true if element has an attribute whose qualified name is qualifiedName, and false otherwise.
7859
7820
  *
@@ -7911,7 +7872,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7911
7872
  */
7912
7873
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
7913
7874
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock) */
7914
- requestPointerLock(): void;
7875
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
7915
7876
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll) */
7916
7877
  scroll(options?: ScrollToOptions): void;
7917
7878
  scroll(x: number, y: number): void;
@@ -7939,6 +7900,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7939
7900
  setAttributeNode(attr: Attr): Attr | null;
7940
7901
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
7941
7902
  setAttributeNodeNS(attr: Attr): Attr | null;
7903
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe) */
7942
7904
  setHTMLUnsafe(html: string): void;
7943
7905
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
7944
7906
  setPointerCapture(pointerId: number): void;
@@ -8083,15 +8045,10 @@ declare var EncodedVideoChunk: {
8083
8045
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8084
8046
  */
8085
8047
  interface ErrorEvent extends Event {
8086
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8087
8048
  readonly colno: number;
8088
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8089
8049
  readonly error: any;
8090
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8091
8050
  readonly filename: string;
8092
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8093
8051
  readonly lineno: number;
8094
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8095
8052
  readonly message: string;
8096
8053
  }
8097
8054
 
@@ -8347,23 +8304,11 @@ declare var EventTarget: {
8347
8304
  new(): EventTarget;
8348
8305
  };
8349
8306
 
8350
- /**
8351
- * @deprecated
8352
- *
8353
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External)
8354
- */
8307
+ /** @deprecated */
8355
8308
  interface External {
8356
- /**
8357
- * @deprecated
8358
- *
8359
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/AddSearchProvider)
8360
- */
8309
+ /** @deprecated */
8361
8310
  AddSearchProvider(): void;
8362
- /**
8363
- * @deprecated
8364
- *
8365
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/IsSearchProviderInstalled)
8366
- */
8311
+ /** @deprecated */
8367
8312
  IsSearchProviderInstalled(): void;
8368
8313
  }
8369
8314
 
@@ -8803,6 +8748,7 @@ interface Gamepad {
8803
8748
  readonly mapping: GamepadMappingType;
8804
8749
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
8805
8750
  readonly timestamp: DOMHighResTimeStamp;
8751
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/vibrationActuator) */
8806
8752
  readonly vibrationActuator: GamepadHapticActuator;
8807
8753
  }
8808
8754
 
@@ -8851,6 +8797,7 @@ declare var GamepadEvent: {
8851
8797
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
8852
8798
  */
8853
8799
  interface GamepadHapticActuator {
8800
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/playEffect) */
8854
8801
  playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
8855
8802
  reset(): Promise<GamepadHapticsResult>;
8856
8803
  }
@@ -8906,6 +8853,8 @@ interface GeolocationCoordinates {
8906
8853
  readonly longitude: number;
8907
8854
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/speed) */
8908
8855
  readonly speed: number | null;
8856
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/toJSON) */
8857
+ toJSON(): any;
8909
8858
  }
8910
8859
 
8911
8860
  declare var GeolocationCoordinates: {
@@ -8923,6 +8872,8 @@ interface GeolocationPosition {
8923
8872
  readonly coords: GeolocationCoordinates;
8924
8873
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/timestamp) */
8925
8874
  readonly timestamp: EpochTimeStamp;
8875
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/toJSON) */
8876
+ toJSON(): any;
8926
8877
  }
8927
8878
 
8928
8879
  declare var GeolocationPosition: {
@@ -9084,7 +9035,7 @@ interface GlobalEventHandlers {
9084
9035
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
9085
9036
  */
9086
9037
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
9087
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
9038
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
9088
9039
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9089
9040
  /**
9090
9041
  * Occurs when playback is possible, but would require further buffering.
@@ -9272,7 +9223,7 @@ interface GlobalEventHandlers {
9272
9223
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
9273
9224
  */
9274
9225
  onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9275
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
9226
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
9276
9227
  onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
9277
9228
  /**
9278
9229
  * Fires when the user clicks the object with either mouse button.
@@ -9541,15 +9492,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9541
9492
  /**
9542
9493
  * Sets or retrieves the character set used to encode the object.
9543
9494
  * @deprecated
9544
- *
9545
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/charset)
9546
9495
  */
9547
9496
  charset: string;
9548
9497
  /**
9549
9498
  * Sets or retrieves the coordinates of the object.
9550
9499
  * @deprecated
9551
- *
9552
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/coords)
9553
9500
  */
9554
9501
  coords: string;
9555
9502
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/download) */
@@ -9563,8 +9510,6 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9563
9510
  /**
9564
9511
  * Sets or retrieves the shape of the object.
9565
9512
  * @deprecated
9566
- *
9567
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
9568
9513
  */
9569
9514
  name: string;
9570
9515
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
@@ -9582,15 +9527,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9582
9527
  /**
9583
9528
  * Sets or retrieves the relationship between the object and the destination of the link.
9584
9529
  * @deprecated
9585
- *
9586
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/rev)
9587
9530
  */
9588
9531
  rev: string;
9589
9532
  /**
9590
9533
  * Sets or retrieves the shape of the object.
9591
9534
  * @deprecated
9592
- *
9593
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/shape)
9594
9535
  */
9595
9536
  shape: string;
9596
9537
  /**
@@ -9624,25 +9565,14 @@ declare var HTMLAnchorElement: {
9624
9565
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)
9625
9566
  */
9626
9567
  interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
9627
- /**
9628
- * Sets or retrieves a text alternative to the graphic.
9629
- *
9630
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
9631
- */
9568
+ /** Sets or retrieves a text alternative to the graphic. */
9632
9569
  alt: string;
9633
- /**
9634
- * Sets or retrieves the coordinates of the object.
9635
- *
9636
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
9637
- */
9570
+ /** Sets or retrieves the coordinates of the object. */
9638
9571
  coords: string;
9639
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
9640
9572
  download: string;
9641
9573
  /**
9642
9574
  * Sets or gets whether clicks in this region cause action.
9643
9575
  * @deprecated
9644
- *
9645
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
9646
9576
  */
9647
9577
  noHref: boolean;
9648
9578
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
@@ -9653,11 +9583,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
9653
9583
  rel: string;
9654
9584
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
9655
9585
  readonly relList: DOMTokenList;
9656
- /**
9657
- * Sets or retrieves the shape of the object.
9658
- *
9659
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
9660
- */
9586
+ /** Sets or retrieves the shape of the object. */
9661
9587
  shape: string;
9662
9588
  /**
9663
9589
  * Sets or retrieves the window or frame at which to target content.
@@ -9702,8 +9628,6 @@ interface HTMLBRElement extends HTMLElement {
9702
9628
  /**
9703
9629
  * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.
9704
9630
  * @deprecated
9705
- *
9706
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBRElement/clear)
9707
9631
  */
9708
9632
  clear: string;
9709
9633
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -9723,11 +9647,7 @@ declare var HTMLBRElement: {
9723
9647
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement)
9724
9648
  */
9725
9649
  interface HTMLBaseElement extends HTMLElement {
9726
- /**
9727
- * Gets or sets the baseline URL on which relative links are based.
9728
- *
9729
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBaseElement/href)
9730
- */
9650
+ /** Gets or sets the baseline URL on which relative links are based. */
9731
9651
  href: string;
9732
9652
  /**
9733
9653
  * Sets or retrieves the window or frame at which to target content.
@@ -9755,41 +9675,17 @@ interface HTMLBodyElementEventMap extends HTMLElementEventMap, WindowEventHandle
9755
9675
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement)
9756
9676
  */
9757
9677
  interface HTMLBodyElement extends HTMLElement, WindowEventHandlers {
9758
- /**
9759
- * @deprecated
9760
- *
9761
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/aLink)
9762
- */
9678
+ /** @deprecated */
9763
9679
  aLink: string;
9764
- /**
9765
- * @deprecated
9766
- *
9767
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/background)
9768
- */
9680
+ /** @deprecated */
9769
9681
  background: string;
9770
- /**
9771
- * @deprecated
9772
- *
9773
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/bgColor)
9774
- */
9682
+ /** @deprecated */
9775
9683
  bgColor: string;
9776
- /**
9777
- * @deprecated
9778
- *
9779
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/link)
9780
- */
9684
+ /** @deprecated */
9781
9685
  link: string;
9782
- /**
9783
- * @deprecated
9784
- *
9785
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/text)
9786
- */
9686
+ /** @deprecated */
9787
9687
  text: string;
9788
- /**
9789
- * @deprecated
9790
- *
9791
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/vLink)
9792
- */
9688
+ /** @deprecated */
9793
9689
  vLink: string;
9794
9690
  addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
9795
9691
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -9810,49 +9706,21 @@ declare var HTMLBodyElement: {
9810
9706
  interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
9811
9707
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/disabled) */
9812
9708
  disabled: boolean;
9813
- /**
9814
- * Retrieves a reference to the form that the object is embedded in.
9815
- *
9816
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
9817
- */
9709
+ /** Retrieves a reference to the form that the object is embedded in. */
9818
9710
  readonly form: HTMLFormElement | null;
9819
- /**
9820
- * Overrides the action attribute (where the data on a form is sent) on the parent form element.
9821
- *
9822
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
9823
- */
9711
+ /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
9824
9712
  formAction: string;
9825
- /**
9826
- * Used to override the encoding (formEnctype attribute) specified on the form element.
9827
- *
9828
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
9829
- */
9713
+ /** Used to override the encoding (formEnctype attribute) specified on the form element. */
9830
9714
  formEnctype: string;
9831
- /**
9832
- * Overrides the submit method attribute previously specified on a form element.
9833
- *
9834
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
9835
- */
9715
+ /** Overrides the submit method attribute previously specified on a form element. */
9836
9716
  formMethod: string;
9837
- /**
9838
- * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
9839
- *
9840
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formNoValidate)
9841
- */
9717
+ /** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
9842
9718
  formNoValidate: boolean;
9843
- /**
9844
- * Overrides the target attribute on a form element.
9845
- *
9846
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formTarget)
9847
- */
9719
+ /** Overrides the target attribute on a form element. */
9848
9720
  formTarget: string;
9849
9721
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels) */
9850
9722
  readonly labels: NodeListOf<HTMLLabelElement>;
9851
- /**
9852
- * Sets or retrieves the name of the object.
9853
- *
9854
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/name)
9855
- */
9723
+ /** Sets or retrieves the name of the object. */
9856
9724
  name: string;
9857
9725
  /**
9858
9726
  * Gets the classification and default behavior of the button.
@@ -9860,33 +9728,16 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
9860
9728
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/type)
9861
9729
  */
9862
9730
  type: "submit" | "reset" | "button";
9863
- /**
9864
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
9865
- *
9866
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validationMessage)
9867
- */
9731
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
9868
9732
  readonly validationMessage: string;
9869
- /**
9870
- * Returns a ValidityState object that represents the validity states of an element.
9871
- *
9872
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validity)
9873
- */
9733
+ /** Returns a ValidityState object that represents the validity states of an element. */
9874
9734
  readonly validity: ValidityState;
9875
- /**
9876
- * Sets or retrieves the default or selected value of the control.
9877
- *
9878
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/value)
9879
- */
9735
+ /** Sets or retrieves the default or selected value of the control. */
9880
9736
  value: string;
9881
- /**
9882
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
9883
- *
9884
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/willValidate)
9885
- */
9737
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
9886
9738
  readonly willValidate: boolean;
9887
9739
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
9888
9740
  checkValidity(): boolean;
9889
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/reportValidity) */
9890
9741
  reportValidity(): boolean;
9891
9742
  /**
9892
9743
  * Sets a custom error message that is displayed when a form is submitted.
@@ -10004,11 +9855,7 @@ interface HTMLCollectionOf<T extends Element> extends HTMLCollectionBase {
10004
9855
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement)
10005
9856
  */
10006
9857
  interface HTMLDListElement extends HTMLElement {
10007
- /**
10008
- * @deprecated
10009
- *
10010
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement/compact)
10011
- */
9858
+ /** @deprecated */
10012
9859
  compact: boolean;
10013
9860
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10014
9861
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -10046,11 +9893,7 @@ declare var HTMLDataElement: {
10046
9893
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement)
10047
9894
  */
10048
9895
  interface HTMLDataListElement extends HTMLElement {
10049
- /**
10050
- * Returns an HTMLCollection of the option elements of the datalist element.
10051
- *
10052
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement/options)
10053
- */
9896
+ /** Returns an HTMLCollection of the option elements of the datalist element. */
10054
9897
  readonly options: HTMLCollectionOf<HTMLOptionElement>;
10055
9898
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10056
9899
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -10137,8 +9980,6 @@ interface HTMLDivElement extends HTMLElement {
10137
9980
  /**
10138
9981
  * Sets or retrieves how the object is aligned with adjacent text.
10139
9982
  * @deprecated
10140
- *
10141
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDivElement/align)
10142
9983
  */
10143
9984
  align: string;
10144
9985
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10179,6 +10020,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10179
10020
  accessKey: string;
10180
10021
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/accessKeyLabel) */
10181
10022
  readonly accessKeyLabel: string;
10023
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autocapitalize) */
10182
10024
  autocapitalize: string;
10183
10025
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dir) */
10184
10026
  dir: string;
@@ -10252,7 +10094,11 @@ interface HTMLEmbedElement extends HTMLElement {
10252
10094
  * @deprecated
10253
10095
  */
10254
10096
  name: string;
10255
- /** Sets or retrieves a URL to be loaded by the object. */
10097
+ /**
10098
+ * Sets or retrieves a URL to be loaded by the object.
10099
+ *
10100
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)
10101
+ */
10256
10102
  src: string;
10257
10103
  type: string;
10258
10104
  /**
@@ -10279,49 +10125,22 @@ declare var HTMLEmbedElement: {
10279
10125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement)
10280
10126
  */
10281
10127
  interface HTMLFieldSetElement extends HTMLElement {
10282
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/disabled) */
10283
10128
  disabled: boolean;
10284
- /**
10285
- * Returns an HTMLCollection of the form controls in the element.
10286
- *
10287
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/elements)
10288
- */
10129
+ /** Returns an HTMLCollection of the form controls in the element. */
10289
10130
  readonly elements: HTMLCollection;
10290
- /**
10291
- * Retrieves a reference to the form that the object is embedded in.
10292
- *
10293
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/form)
10294
- */
10131
+ /** Retrieves a reference to the form that the object is embedded in. */
10295
10132
  readonly form: HTMLFormElement | null;
10296
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/name) */
10297
10133
  name: string;
10298
- /**
10299
- * Returns the string "fieldset".
10300
- *
10301
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/type)
10302
- */
10134
+ /** Returns the string "fieldset". */
10303
10135
  readonly type: string;
10304
- /**
10305
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
10306
- *
10307
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validationMessage)
10308
- */
10136
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
10309
10137
  readonly validationMessage: string;
10310
- /**
10311
- * Returns a ValidityState object that represents the validity states of an element.
10312
- *
10313
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validity)
10314
- */
10138
+ /** Returns a ValidityState object that represents the validity states of an element. */
10315
10139
  readonly validity: ValidityState;
10316
- /**
10317
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
10318
- *
10319
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/willValidate)
10320
- */
10140
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
10321
10141
  readonly willValidate: boolean;
10322
10142
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
10323
10143
  checkValidity(): boolean;
10324
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/reportValidity) */
10325
10144
  reportValidity(): boolean;
10326
10145
  /**
10327
10146
  * Sets a custom error message that is displayed when a form is submitted.
@@ -10416,11 +10235,7 @@ interface HTMLFormElement extends HTMLElement {
10416
10235
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
10417
10236
  */
10418
10237
  action: string;
10419
- /**
10420
- * Specifies whether autocomplete is applied to an editable text field.
10421
- *
10422
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
10423
- */
10238
+ /** Specifies whether autocomplete is applied to an editable text field. */
10424
10239
  autocomplete: AutoFillBase;
10425
10240
  /**
10426
10241
  * Retrieves a collection, in source order, of all controls in a given form.
@@ -10458,11 +10273,7 @@ interface HTMLFormElement extends HTMLElement {
10458
10273
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/name)
10459
10274
  */
10460
10275
  name: string;
10461
- /**
10462
- * Designates a form that is not validated when submitted.
10463
- *
10464
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/noValidate)
10465
- */
10276
+ /** Designates a form that is not validated when submitted. */
10466
10277
  noValidate: boolean;
10467
10278
  rel: string;
10468
10279
  readonly relList: DOMTokenList;
@@ -10472,11 +10283,7 @@ interface HTMLFormElement extends HTMLElement {
10472
10283
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/target)
10473
10284
  */
10474
10285
  target: string;
10475
- /**
10476
- * Returns whether a form will validate when it is submitted, without having to submit it.
10477
- *
10478
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/checkValidity)
10479
- */
10286
+ /** Returns whether a form will validate when it is submitted, without having to submit it. */
10480
10287
  checkValidity(): boolean;
10481
10288
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reportValidity) */
10482
10289
  reportValidity(): boolean;
@@ -10507,80 +10314,56 @@ declare var HTMLFormElement: {
10507
10314
  new(): HTMLFormElement;
10508
10315
  };
10509
10316
 
10510
- /**
10511
- * @deprecated
10512
- *
10513
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement)
10514
- */
10317
+ /** @deprecated */
10515
10318
  interface HTMLFrameElement extends HTMLElement {
10516
10319
  /**
10517
10320
  * Retrieves the document object of the page or frame.
10518
10321
  * @deprecated
10519
- *
10520
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentDocument)
10521
10322
  */
10522
10323
  readonly contentDocument: Document | null;
10523
10324
  /**
10524
10325
  * Retrieves the object of the specified.
10525
10326
  * @deprecated
10526
- *
10527
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentWindow)
10528
10327
  */
10529
10328
  readonly contentWindow: WindowProxy | null;
10530
10329
  /**
10531
10330
  * Sets or retrieves whether to display a border for the frame.
10532
10331
  * @deprecated
10533
- *
10534
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/frameBorder)
10535
10332
  */
10536
10333
  frameBorder: string;
10537
10334
  /**
10538
10335
  * Sets or retrieves a URI to a long description of the object.
10539
10336
  * @deprecated
10540
- *
10541
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/longDesc)
10542
10337
  */
10543
10338
  longDesc: string;
10544
10339
  /**
10545
10340
  * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
10546
10341
  * @deprecated
10547
- *
10548
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginHeight)
10549
10342
  */
10550
10343
  marginHeight: string;
10551
10344
  /**
10552
10345
  * Sets or retrieves the left and right margin widths before displaying the text in a frame.
10553
10346
  * @deprecated
10554
- *
10555
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginWidth)
10556
10347
  */
10557
10348
  marginWidth: string;
10558
10349
  /**
10559
10350
  * Sets or retrieves the frame name.
10560
10351
  * @deprecated
10561
- *
10562
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/name)
10563
10352
  */
10564
10353
  name: string;
10565
10354
  /**
10566
10355
  * Sets or retrieves whether the user can resize the frame.
10567
10356
  * @deprecated
10568
- *
10569
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/noResize)
10570
10357
  */
10571
10358
  noResize: boolean;
10572
10359
  /**
10573
10360
  * Sets or retrieves whether the frame can be scrolled.
10574
10361
  * @deprecated
10575
- *
10576
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/scrolling)
10577
10362
  */
10578
10363
  scrolling: string;
10579
10364
  /**
10580
10365
  * Sets or retrieves a URL to be loaded by the object.
10581
10366
  * @deprecated
10582
- *
10583
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/src)
10584
10367
  */
10585
10368
  src: string;
10586
10369
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10689,8 +10472,6 @@ interface HTMLHeadingElement extends HTMLElement {
10689
10472
  /**
10690
10473
  * Sets or retrieves a value that indicates the table alignment.
10691
10474
  * @deprecated
10692
- *
10693
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHeadingElement/align)
10694
10475
  */
10695
10476
  align: string;
10696
10477
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10827,8 +10608,6 @@ interface HTMLIFrameElement extends HTMLElement {
10827
10608
  /**
10828
10609
  * Sets or retrieves how the object is aligned with adjacent text.
10829
10610
  * @deprecated
10830
- *
10831
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/align)
10832
10611
  */
10833
10612
  align: string;
10834
10613
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allow) */
@@ -10850,8 +10629,6 @@ interface HTMLIFrameElement extends HTMLElement {
10850
10629
  /**
10851
10630
  * Sets or retrieves whether to display a border for the frame.
10852
10631
  * @deprecated
10853
- *
10854
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/frameBorder)
10855
10632
  */
10856
10633
  frameBorder: string;
10857
10634
  /**
@@ -10865,22 +10642,16 @@ interface HTMLIFrameElement extends HTMLElement {
10865
10642
  /**
10866
10643
  * Sets or retrieves a URI to a long description of the object.
10867
10644
  * @deprecated
10868
- *
10869
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/longDesc)
10870
10645
  */
10871
10646
  longDesc: string;
10872
10647
  /**
10873
10648
  * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
10874
10649
  * @deprecated
10875
- *
10876
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginHeight)
10877
10650
  */
10878
10651
  marginHeight: string;
10879
10652
  /**
10880
10653
  * Sets or retrieves the left and right margin widths before displaying the text in a frame.
10881
10654
  * @deprecated
10882
- *
10883
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginWidth)
10884
10655
  */
10885
10656
  marginWidth: string;
10886
10657
  /**
@@ -10896,8 +10667,6 @@ interface HTMLIFrameElement extends HTMLElement {
10896
10667
  /**
10897
10668
  * Sets or retrieves whether the frame can be scrolled.
10898
10669
  * @deprecated
10899
- *
10900
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/scrolling)
10901
10670
  */
10902
10671
  scrolling: string;
10903
10672
  /**
@@ -11002,11 +10771,7 @@ interface HTMLImageElement extends HTMLElement {
11002
10771
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/longDesc)
11003
10772
  */
11004
10773
  longDesc: string;
11005
- /**
11006
- * @deprecated
11007
- *
11008
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/lowsrc)
11009
- */
10774
+ /** @deprecated */
11010
10775
  lowsrc: string;
11011
10776
  /**
11012
10777
  * Sets or retrieves the name of the object.
@@ -11090,22 +10855,14 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11090
10855
  align: string;
11091
10856
  /** Sets or retrieves a text alternative to the graphic. */
11092
10857
  alt: string;
11093
- /**
11094
- * Specifies whether autocomplete is applied to an editable text field.
11095
- *
11096
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/autocomplete)
11097
- */
10858
+ /** Specifies whether autocomplete is applied to an editable text field. */
11098
10859
  autocomplete: AutoFill;
11099
10860
  capture: string;
11100
10861
  /** Sets or retrieves the state of the check box or radio button. */
11101
10862
  checked: boolean;
11102
10863
  /** Sets or retrieves the state of the check box or radio button. */
11103
10864
  defaultChecked: boolean;
11104
- /**
11105
- * Sets or retrieves the initial contents of the object.
11106
- *
11107
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
11108
- */
10865
+ /** Sets or retrieves the initial contents of the object. */
11109
10866
  defaultValue: string;
11110
10867
  dirName: string;
11111
10868
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
@@ -11118,71 +10875,30 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11118
10875
  files: FileList | null;
11119
10876
  /** Retrieves a reference to the form that the object is embedded in. */
11120
10877
  readonly form: HTMLFormElement | null;
11121
- /**
11122
- * Overrides the action attribute (where the data on a form is sent) on the parent form element.
11123
- *
11124
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11125
- */
10878
+ /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11126
10879
  formAction: string;
11127
- /**
11128
- * Used to override the encoding (formEnctype attribute) specified on the form element.
11129
- *
11130
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11131
- */
10880
+ /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11132
10881
  formEnctype: string;
11133
- /**
11134
- * Overrides the submit method attribute previously specified on a form element.
11135
- *
11136
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
11137
- */
10882
+ /** Overrides the submit method attribute previously specified on a form element. */
11138
10883
  formMethod: string;
11139
- /**
11140
- * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
11141
- *
11142
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formNoValidate)
11143
- */
10884
+ /** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
11144
10885
  formNoValidate: boolean;
11145
- /**
11146
- * Overrides the target attribute on a form element.
11147
- *
11148
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formTarget)
11149
- */
10886
+ /** Overrides the target attribute on a form element. */
11150
10887
  formTarget: string;
11151
- /**
11152
- * Sets or retrieves the height of the object.
11153
- *
11154
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
11155
- */
10888
+ /** Sets or retrieves the height of the object. */
11156
10889
  height: number;
11157
10890
  /** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
11158
10891
  indeterminate: boolean;
11159
10892
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
11160
10893
  readonly labels: NodeListOf<HTMLLabelElement> | null;
11161
- /**
11162
- * Specifies the ID of a pre-defined datalist of options for an input element.
11163
- *
11164
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
11165
- */
10894
+ /** Specifies the ID of a pre-defined datalist of options for an input element. */
11166
10895
  readonly list: HTMLDataListElement | null;
11167
- /**
11168
- * Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
11169
- *
11170
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
11171
- */
10896
+ /** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
11172
10897
  max: string;
11173
- /**
11174
- * Sets or retrieves the maximum number of characters that the user can enter in a text control.
11175
- *
11176
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
11177
- */
10898
+ /** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
11178
10899
  maxLength: number;
11179
- /**
11180
- * Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
11181
- *
11182
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
11183
- */
10900
+ /** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
11184
10901
  min: string;
11185
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
11186
10902
  minLength: number;
11187
10903
  /**
11188
10904
  * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
@@ -11192,24 +10908,12 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11192
10908
  multiple: boolean;
11193
10909
  /** Sets or retrieves the name of the object. */
11194
10910
  name: string;
11195
- /**
11196
- * Gets or sets a string containing a regular expression that the user's input must match.
11197
- *
11198
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/pattern)
11199
- */
10911
+ /** Gets or sets a string containing a regular expression that the user's input must match. */
11200
10912
  pattern: string;
11201
- /**
11202
- * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.
11203
- *
11204
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/placeholder)
11205
- */
10913
+ /** Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field. */
11206
10914
  placeholder: string;
11207
10915
  readOnly: boolean;
11208
- /**
11209
- * When present, marks an element that can't be submitted without a value.
11210
- *
11211
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/required)
11212
- */
10916
+ /** When present, marks an element that can't be submitted without a value. */
11213
10917
  required: boolean;
11214
10918
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
11215
10919
  selectionDirection: "forward" | "backward" | "none" | null;
@@ -11241,23 +10945,11 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11241
10945
  * @deprecated
11242
10946
  */
11243
10947
  useMap: string;
11244
- /**
11245
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
11246
- *
11247
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validationMessage)
11248
- */
10948
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
11249
10949
  readonly validationMessage: string;
11250
- /**
11251
- * Returns a ValidityState object that represents the validity states of an element.
11252
- *
11253
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
11254
- */
10950
+ /** Returns a ValidityState object that represents the validity states of an element. */
11255
10951
  readonly validity: ValidityState;
11256
- /**
11257
- * Returns the value of the data at the cursor's current position.
11258
- *
11259
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
11260
- */
10952
+ /** Returns the value of the data at the cursor's current position. */
11261
10953
  value: string;
11262
10954
  /** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
11263
10955
  valueAsDate: Date | null;
@@ -11267,17 +10959,9 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11267
10959
  readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
11268
10960
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory) */
11269
10961
  webkitdirectory: boolean;
11270
- /**
11271
- * Sets or retrieves the width of the object.
11272
- *
11273
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/width)
11274
- */
10962
+ /** Sets or retrieves the width of the object. */
11275
10963
  width: number;
11276
- /**
11277
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
11278
- *
11279
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/willValidate)
11280
- */
10964
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
11281
10965
  readonly willValidate: boolean;
11282
10966
  /**
11283
10967
  * Returns whether a form will validate when it is submitted, without having to submit it.
@@ -11434,12 +11118,8 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11434
11118
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/disabled) */
11435
11119
  disabled: boolean;
11436
11120
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority) */
11437
- fetchPriority: string;
11438
- /**
11439
- * Sets or retrieves a destination URL or an anchor point.
11440
- *
11441
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
11442
- */
11121
+ fetchPriority: string;
11122
+ /** Sets or retrieves a destination URL or an anchor point. */
11443
11123
  href: string;
11444
11124
  /**
11445
11125
  * Sets or retrieves the language code of the object.
@@ -11451,11 +11131,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11451
11131
  imageSrcset: string;
11452
11132
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
11453
11133
  integrity: string;
11454
- /**
11455
- * Sets or retrieves the media type.
11456
- *
11457
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/media)
11458
- */
11134
+ /** Sets or retrieves the media type. */
11459
11135
  media: string;
11460
11136
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/referrerPolicy) */
11461
11137
  referrerPolicy: string;
@@ -11472,7 +11148,6 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11472
11148
  * @deprecated
11473
11149
  */
11474
11150
  rev: string;
11475
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
11476
11151
  readonly sizes: DOMTokenList;
11477
11152
  /**
11478
11153
  * Sets or retrieves the window or frame at which to target content.
@@ -11502,11 +11177,7 @@ declare var HTMLLinkElement: {
11502
11177
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement)
11503
11178
  */
11504
11179
  interface HTMLMapElement extends HTMLElement {
11505
- /**
11506
- * Retrieves a collection of the area objects defined for the given map object.
11507
- *
11508
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMapElement/areas)
11509
- */
11180
+ /** Retrieves a collection of the area objects defined for the given map object. */
11510
11181
  readonly areas: HTMLCollection;
11511
11182
  /**
11512
11183
  * Sets or retrieves the name of the object.
@@ -11667,7 +11338,6 @@ interface HTMLMediaElement extends HTMLElement {
11667
11338
  readonly networkState: number;
11668
11339
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/encrypted_event) */
11669
11340
  onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null;
11670
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waitingforkey_event) */
11671
11341
  onwaitingforkey: ((this: HTMLMediaElement, ev: Event) => any) | null;
11672
11342
  /**
11673
11343
  * Gets a flag that specifies whether playback is paused.
@@ -11681,11 +11351,7 @@ interface HTMLMediaElement extends HTMLElement {
11681
11351
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playbackRate)
11682
11352
  */
11683
11353
  playbackRate: number;
11684
- /**
11685
- * Gets TimeRanges for the current media resource that has been played.
11686
- *
11687
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/played)
11688
- */
11354
+ /** Gets TimeRanges for the current media resource that has been played. */
11689
11355
  readonly played: TimeRanges;
11690
11356
  /**
11691
11357
  * Gets or sets a value indicating what data should be preloaded, if any.
@@ -11705,11 +11371,7 @@ interface HTMLMediaElement extends HTMLElement {
11705
11371
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seekable)
11706
11372
  */
11707
11373
  readonly seekable: TimeRanges;
11708
- /**
11709
- * Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource.
11710
- *
11711
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking)
11712
- */
11374
+ /** Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource. */
11713
11375
  readonly seeking: boolean;
11714
11376
  /**
11715
11377
  * Available only in secure contexts.
@@ -11733,7 +11395,6 @@ interface HTMLMediaElement extends HTMLElement {
11733
11395
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volume)
11734
11396
  */
11735
11397
  volume: number;
11736
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/addTextTrack) */
11737
11398
  addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack;
11738
11399
  /**
11739
11400
  * Returns a string that specifies whether the client can play a given media resource type.
@@ -11804,11 +11465,7 @@ declare var HTMLMediaElement: {
11804
11465
 
11805
11466
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement) */
11806
11467
  interface HTMLMenuElement extends HTMLElement {
11807
- /**
11808
- * @deprecated
11809
- *
11810
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement/compact)
11811
- */
11468
+ /** @deprecated */
11812
11469
  compact: boolean;
11813
11470
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11814
11471
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11871,19 +11528,13 @@ declare var HTMLMetaElement: {
11871
11528
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement)
11872
11529
  */
11873
11530
  interface HTMLMeterElement extends HTMLElement {
11874
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/high) */
11875
11531
  high: number;
11876
11532
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels) */
11877
11533
  readonly labels: NodeListOf<HTMLLabelElement>;
11878
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/low) */
11879
11534
  low: number;
11880
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/max) */
11881
11535
  max: number;
11882
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/min) */
11883
11536
  min: number;
11884
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/optimum) */
11885
11537
  optimum: number;
11886
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/value) */
11887
11538
  value: number;
11888
11539
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11889
11540
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11902,17 +11553,9 @@ declare var HTMLMeterElement: {
11902
11553
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
11903
11554
  */
11904
11555
  interface HTMLModElement extends HTMLElement {
11905
- /**
11906
- * Sets or retrieves reference information about the object.
11907
- *
11908
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
11909
- */
11556
+ /** Sets or retrieves reference information about the object. */
11910
11557
  cite: string;
11911
- /**
11912
- * Sets or retrieves the date and time of a modification to the object.
11913
- *
11914
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)
11915
- */
11558
+ /** Sets or retrieves the date and time of a modification to the object. */
11916
11559
  dateTime: string;
11917
11560
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11918
11561
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11931,11 +11574,7 @@ declare var HTMLModElement: {
11931
11574
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement)
11932
11575
  */
11933
11576
  interface HTMLOListElement extends HTMLElement {
11934
- /**
11935
- * @deprecated
11936
- *
11937
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/compact)
11938
- */
11577
+ /** @deprecated */
11939
11578
  compact: boolean;
11940
11579
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/reversed) */
11941
11580
  reversed: boolean;
@@ -11964,44 +11603,28 @@ declare var HTMLOListElement: {
11964
11603
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement)
11965
11604
  */
11966
11605
  interface HTMLObjectElement extends HTMLElement {
11967
- /**
11968
- * @deprecated
11969
- *
11970
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/align)
11971
- */
11606
+ /** @deprecated */
11972
11607
  align: string;
11973
11608
  /**
11974
11609
  * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.
11975
11610
  * @deprecated
11976
- *
11977
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/archive)
11978
11611
  */
11979
11612
  archive: string;
11980
- /**
11981
- * @deprecated
11982
- *
11983
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/border)
11984
- */
11613
+ /** @deprecated */
11985
11614
  border: string;
11986
11615
  /**
11987
11616
  * Sets or retrieves the URL of the file containing the compiled Java class.
11988
11617
  * @deprecated
11989
- *
11990
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/code)
11991
11618
  */
11992
11619
  code: string;
11993
11620
  /**
11994
11621
  * Sets or retrieves the URL of the component.
11995
11622
  * @deprecated
11996
- *
11997
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeBase)
11998
11623
  */
11999
11624
  codeBase: string;
12000
11625
  /**
12001
11626
  * Sets or retrieves the Internet media type for the code associated with the object.
12002
11627
  * @deprecated
12003
- *
12004
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeType)
12005
11628
  */
12006
11629
  codeType: string;
12007
11630
  /**
@@ -12018,11 +11641,7 @@ interface HTMLObjectElement extends HTMLElement {
12018
11641
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
12019
11642
  */
12020
11643
  data: string;
12021
- /**
12022
- * @deprecated
12023
- *
12024
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/declare)
12025
- */
11644
+ /** @deprecated */
12026
11645
  declare: boolean;
12027
11646
  /**
12028
11647
  * Retrieves a reference to the form that the object is embedded in.
@@ -12036,11 +11655,7 @@ interface HTMLObjectElement extends HTMLElement {
12036
11655
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
12037
11656
  */
12038
11657
  height: string;
12039
- /**
12040
- * @deprecated
12041
- *
12042
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/hspace)
12043
- */
11658
+ /** @deprecated */
12044
11659
  hspace: number;
12045
11660
  /**
12046
11661
  * Sets or retrieves the name of the object.
@@ -12051,8 +11666,6 @@ interface HTMLObjectElement extends HTMLElement {
12051
11666
  /**
12052
11667
  * Sets or retrieves a message to be displayed while an object is loading.
12053
11668
  * @deprecated
12054
- *
12055
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/standby)
12056
11669
  */
12057
11670
  standby: string;
12058
11671
  /**
@@ -12080,11 +11693,7 @@ interface HTMLObjectElement extends HTMLElement {
12080
11693
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/validity)
12081
11694
  */
12082
11695
  readonly validity: ValidityState;
12083
- /**
12084
- * @deprecated
12085
- *
12086
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/vspace)
12087
- */
11696
+ /** @deprecated */
12088
11697
  vspace: number;
12089
11698
  /**
12090
11699
  * Sets or retrieves the width of the object.
@@ -12104,9 +11713,7 @@ interface HTMLObjectElement extends HTMLElement {
12104
11713
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
12105
11714
  */
12106
11715
  checkValidity(): boolean;
12107
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
12108
11716
  getSVGDocument(): Document | null;
12109
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
12110
11717
  reportValidity(): boolean;
12111
11718
  /**
12112
11719
  * Sets a custom error message that is displayed when a form is submitted.
@@ -12132,13 +11739,8 @@ declare var HTMLObjectElement: {
12132
11739
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement)
12133
11740
  */
12134
11741
  interface HTMLOptGroupElement extends HTMLElement {
12135
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/disabled) */
12136
11742
  disabled: boolean;
12137
- /**
12138
- * Sets or retrieves a value that you can use to implement your own label functionality for the object.
12139
- *
12140
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/label)
12141
- */
11743
+ /** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
12142
11744
  label: string;
12143
11745
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12144
11746
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12157,49 +11759,20 @@ declare var HTMLOptGroupElement: {
12157
11759
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement)
12158
11760
  */
12159
11761
  interface HTMLOptionElement extends HTMLElement {
12160
- /**
12161
- * Sets or retrieves the status of an option.
12162
- *
12163
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/defaultSelected)
12164
- */
11762
+ /** Sets or retrieves the status of an option. */
12165
11763
  defaultSelected: boolean;
12166
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/disabled) */
12167
11764
  disabled: boolean;
12168
- /**
12169
- * Retrieves a reference to the form that the object is embedded in.
12170
- *
12171
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/form)
12172
- */
11765
+ /** Retrieves a reference to the form that the object is embedded in. */
12173
11766
  readonly form: HTMLFormElement | null;
12174
- /**
12175
- * Sets or retrieves the ordinal position of an option in a list box.
12176
- *
12177
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/index)
12178
- */
11767
+ /** Sets or retrieves the ordinal position of an option in a list box. */
12179
11768
  readonly index: number;
12180
- /**
12181
- * Sets or retrieves a value that you can use to implement your own label functionality for the object.
12182
- *
12183
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/label)
12184
- */
11769
+ /** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
12185
11770
  label: string;
12186
- /**
12187
- * Sets or retrieves whether the option in the list box is the default item.
12188
- *
12189
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/selected)
12190
- */
11771
+ /** Sets or retrieves whether the option in the list box is the default item. */
12191
11772
  selected: boolean;
12192
- /**
12193
- * Sets or retrieves the text string specified by the option tag.
12194
- *
12195
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/text)
12196
- */
11773
+ /** Sets or retrieves the text string specified by the option tag. */
12197
11774
  text: string;
12198
- /**
12199
- * Sets or retrieves the value which is returned to the server when the form control is submitted.
12200
- *
12201
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/value)
12202
- */
11775
+ /** Sets or retrieves the value which is returned to the server when the form control is submitted. */
12203
11776
  value: string;
12204
11777
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12205
11778
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12224,16 +11797,12 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12224
11797
  * When set to a smaller number, truncates the number of option elements in the corresponding container.
12225
11798
  *
12226
11799
  * When set to a greater number, adds new blank option elements to that container.
12227
- *
12228
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/length)
12229
11800
  */
12230
11801
  length: number;
12231
11802
  /**
12232
11803
  * Returns the index of the first selected item, if any, or −1 if there is no selected item.
12233
11804
  *
12234
11805
  * Can be set, to change the selection.
12235
- *
12236
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/selectedIndex)
12237
11806
  */
12238
11807
  selectedIndex: number;
12239
11808
  /**
@@ -12244,15 +11813,9 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12244
11813
  * If before is omitted, null, or a number out of range, then element will be added at the end of the list.
12245
11814
  *
12246
11815
  * This method will throw a "HierarchyRequestError" DOMException if element is an ancestor of the element into which it is to be inserted.
12247
- *
12248
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/add)
12249
11816
  */
12250
11817
  add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;
12251
- /**
12252
- * Removes the item with index index from the collection.
12253
- *
12254
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/remove)
12255
- */
11818
+ /** Removes the item with index index from the collection. */
12256
11819
  remove(index: number): void;
12257
11820
  }
12258
11821
 
@@ -12282,41 +11845,25 @@ interface HTMLOrSVGElement {
12282
11845
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement)
12283
11846
  */
12284
11847
  interface HTMLOutputElement extends HTMLElement {
12285
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/defaultValue) */
12286
11848
  defaultValue: string;
12287
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/form) */
12288
11849
  readonly form: HTMLFormElement | null;
12289
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor) */
12290
11850
  readonly htmlFor: DOMTokenList;
12291
11851
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels) */
12292
11852
  readonly labels: NodeListOf<HTMLLabelElement>;
12293
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/name) */
12294
11853
  name: string;
12295
- /**
12296
- * Returns the string "output".
12297
- *
12298
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/type)
12299
- */
11854
+ /** Returns the string "output". */
12300
11855
  readonly type: string;
12301
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validationMessage) */
12302
11856
  readonly validationMessage: string;
12303
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validity) */
12304
11857
  readonly validity: ValidityState;
12305
11858
  /**
12306
11859
  * Returns the element's current value.
12307
11860
  *
12308
11861
  * Can be set, to change the value.
12309
- *
12310
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/value)
12311
11862
  */
12312
11863
  value: string;
12313
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/willValidate) */
12314
11864
  readonly willValidate: boolean;
12315
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/checkValidity) */
12316
11865
  checkValidity(): boolean;
12317
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/reportValidity) */
12318
11866
  reportValidity(): boolean;
12319
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/setCustomValidity) */
12320
11867
  setCustomValidity(error: string): void;
12321
11868
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12322
11869
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12338,8 +11885,6 @@ interface HTMLParagraphElement extends HTMLElement {
12338
11885
  /**
12339
11886
  * Sets or retrieves how the object is aligned with adjacent text.
12340
11887
  * @deprecated
12341
- *
12342
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParagraphElement/align)
12343
11888
  */
12344
11889
  align: string;
12345
11890
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12363,29 +11908,21 @@ interface HTMLParamElement extends HTMLElement {
12363
11908
  /**
12364
11909
  * Sets or retrieves the name of an input parameter for an element.
12365
11910
  * @deprecated
12366
- *
12367
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/name)
12368
11911
  */
12369
11912
  name: string;
12370
11913
  /**
12371
11914
  * Sets or retrieves the content type of the resource designated by the value attribute.
12372
11915
  * @deprecated
12373
- *
12374
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/type)
12375
11916
  */
12376
11917
  type: string;
12377
11918
  /**
12378
11919
  * Sets or retrieves the value of an input parameter for an element.
12379
11920
  * @deprecated
12380
- *
12381
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/value)
12382
11921
  */
12383
11922
  value: string;
12384
11923
  /**
12385
11924
  * Sets or retrieves the data type of the value attribute.
12386
11925
  * @deprecated
12387
- *
12388
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/valueType)
12389
11926
  */
12390
11927
  valueType: string;
12391
11928
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12426,8 +11963,6 @@ interface HTMLPreElement extends HTMLElement {
12426
11963
  /**
12427
11964
  * Sets or gets a value that you can use to implement your own width functionality for the object.
12428
11965
  * @deprecated
12429
- *
12430
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLPreElement/width)
12431
11966
  */
12432
11967
  width: number;
12433
11968
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12484,11 +12019,7 @@ declare var HTMLProgressElement: {
12484
12019
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
12485
12020
  */
12486
12021
  interface HTMLQuoteElement extends HTMLElement {
12487
- /**
12488
- * Sets or retrieves reference information about the object.
12489
- *
12490
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
12491
- */
12022
+ /** Sets or retrieves reference information about the object. */
12492
12023
  cite: string;
12493
12024
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12494
12025
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12577,7 +12108,6 @@ declare var HTMLScriptElement: {
12577
12108
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
12578
12109
  */
12579
12110
  interface HTMLSelectElement extends HTMLElement {
12580
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
12581
12111
  autocomplete: AutoFill;
12582
12112
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
12583
12113
  disabled: boolean;
@@ -12589,23 +12119,11 @@ interface HTMLSelectElement extends HTMLElement {
12589
12119
  readonly form: HTMLFormElement | null;
12590
12120
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels) */
12591
12121
  readonly labels: NodeListOf<HTMLLabelElement>;
12592
- /**
12593
- * Sets or retrieves the number of objects in a collection.
12594
- *
12595
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/length)
12596
- */
12122
+ /** Sets or retrieves the number of objects in a collection. */
12597
12123
  length: number;
12598
- /**
12599
- * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
12600
- *
12601
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/multiple)
12602
- */
12124
+ /** Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list. */
12603
12125
  multiple: boolean;
12604
- /**
12605
- * Sets or retrieves the name of the object.
12606
- *
12607
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/name)
12608
- */
12126
+ /** Sets or retrieves the name of the object. */
12609
12127
  name: string;
12610
12128
  /**
12611
12129
  * Returns an HTMLOptionsCollection of the list of options.
@@ -12613,11 +12131,7 @@ interface HTMLSelectElement extends HTMLElement {
12613
12131
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/options)
12614
12132
  */
12615
12133
  readonly options: HTMLOptionsCollection;
12616
- /**
12617
- * When present, marks an element that can't be submitted without a value.
12618
- *
12619
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/required)
12620
- */
12134
+ /** When present, marks an element that can't be submitted without a value. */
12621
12135
  required: boolean;
12622
12136
  /**
12623
12137
  * Sets or retrieves the index of the selected option in a select object.
@@ -12627,11 +12141,7 @@ interface HTMLSelectElement extends HTMLElement {
12627
12141
  selectedIndex: number;
12628
12142
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions) */
12629
12143
  readonly selectedOptions: HTMLCollectionOf<HTMLOptionElement>;
12630
- /**
12631
- * Sets or retrieves the number of rows in the list box.
12632
- *
12633
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/size)
12634
- */
12144
+ /** Sets or retrieves the number of rows in the list box. */
12635
12145
  size: number;
12636
12146
  /**
12637
12147
  * Retrieves the type of select control based on the value of the MULTIPLE attribute.
@@ -12639,17 +12149,9 @@ interface HTMLSelectElement extends HTMLElement {
12639
12149
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
12640
12150
  */
12641
12151
  readonly type: "select-one" | "select-multiple";
12642
- /**
12643
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
12644
- *
12645
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validationMessage)
12646
- */
12152
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
12647
12153
  readonly validationMessage: string;
12648
- /**
12649
- * Returns a ValidityState object that represents the validity states of an element.
12650
- *
12651
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validity)
12652
- */
12154
+ /** Returns a ValidityState object that represents the validity states of an element. */
12653
12155
  readonly validity: ValidityState;
12654
12156
  /**
12655
12157
  * Sets or retrieves the value which is returned to the server when the form control is submitted.
@@ -12657,11 +12159,7 @@ interface HTMLSelectElement extends HTMLElement {
12657
12159
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/value)
12658
12160
  */
12659
12161
  value: string;
12660
- /**
12661
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
12662
- *
12663
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/willValidate)
12664
- */
12162
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
12665
12163
  readonly willValidate: boolean;
12666
12164
  /**
12667
12165
  * Adds an element to the areas, controlRange, or options collection.
@@ -12700,7 +12198,6 @@ interface HTMLSelectElement extends HTMLElement {
12700
12198
  */
12701
12199
  remove(): void;
12702
12200
  remove(index: number): void;
12703
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/reportValidity) */
12704
12201
  reportValidity(): boolean;
12705
12202
  /**
12706
12203
  * Sets a custom error message that is displayed when a form is submitted.
@@ -12752,27 +12249,13 @@ declare var HTMLSlotElement: {
12752
12249
  interface HTMLSourceElement extends HTMLElement {
12753
12250
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
12754
12251
  height: number;
12755
- /**
12756
- * Gets or sets the intended media type of the media source.
12757
- *
12758
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
12759
- */
12252
+ /** Gets or sets the intended media type of the media source. */
12760
12253
  media: string;
12761
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
12762
12254
  sizes: string;
12763
- /**
12764
- * The address or URL of the a media resource that is to be considered.
12765
- *
12766
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
12767
- */
12255
+ /** The address or URL of the a media resource that is to be considered. */
12768
12256
  src: string;
12769
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
12770
12257
  srcset: string;
12771
- /**
12772
- * Gets or sets the MIME type of a media resource.
12773
- *
12774
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
12775
- */
12258
+ /** Gets or sets the MIME type of a media resource. */
12776
12259
  type: string;
12777
12260
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
12778
12261
  width: number;
@@ -12849,8 +12332,6 @@ interface HTMLTableCaptionElement extends HTMLElement {
12849
12332
  /**
12850
12333
  * Sets or retrieves the alignment of the caption or legend.
12851
12334
  * @deprecated
12852
- *
12853
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCaptionElement/align)
12854
12335
  */
12855
12336
  align: string;
12856
12337
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCaptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12886,8 +12367,6 @@ interface HTMLTableCellElement extends HTMLElement {
12886
12367
  /**
12887
12368
  * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.
12888
12369
  * @deprecated
12889
- *
12890
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/axis)
12891
12370
  */
12892
12371
  axis: string;
12893
12372
  /**
@@ -12929,8 +12408,6 @@ interface HTMLTableCellElement extends HTMLElement {
12929
12408
  /**
12930
12409
  * Sets or retrieves the height of the object.
12931
12410
  * @deprecated
12932
- *
12933
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/height)
12934
12411
  */
12935
12412
  height: string;
12936
12413
  /**
@@ -12961,8 +12438,6 @@ interface HTMLTableCellElement extends HTMLElement {
12961
12438
  /**
12962
12439
  * Sets or retrieves the width of the object.
12963
12440
  * @deprecated
12964
- *
12965
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/width)
12966
12441
  */
12967
12442
  width: string;
12968
12443
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13016,8 +12491,6 @@ interface HTMLTableColElement extends HTMLElement {
13016
12491
  /**
13017
12492
  * Sets or retrieves the width of the object.
13018
12493
  * @deprecated
13019
- *
13020
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/width)
13021
12494
  */
13022
12495
  width: string;
13023
12496
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13221,8 +12694,6 @@ interface HTMLTableRowElement extends HTMLElement {
13221
12694
  /**
13222
12695
  * Sets or retrieves how the object is aligned with adjacent text.
13223
12696
  * @deprecated
13224
- *
13225
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/align)
13226
12697
  */
13227
12698
  align: string;
13228
12699
  /**
@@ -13261,11 +12732,7 @@ interface HTMLTableRowElement extends HTMLElement {
13261
12732
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/sectionRowIndex)
13262
12733
  */
13263
12734
  readonly sectionRowIndex: number;
13264
- /**
13265
- * @deprecated
13266
- *
13267
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableRowElement/vAlign)
13268
- */
12735
+ /** @deprecated */
13269
12736
  vAlign: string;
13270
12737
  /**
13271
12738
  * Removes the specified cell from the table row, as well as from the cells collection.
@@ -13301,8 +12768,6 @@ interface HTMLTableSectionElement extends HTMLElement {
13301
12768
  /**
13302
12769
  * Sets or retrieves a value that indicates the table alignment.
13303
12770
  * @deprecated
13304
- *
13305
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/align)
13306
12771
  */
13307
12772
  align: string;
13308
12773
  /**
@@ -13323,11 +12788,7 @@ interface HTMLTableSectionElement extends HTMLElement {
13323
12788
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/rows)
13324
12789
  */
13325
12790
  readonly rows: HTMLCollectionOf<HTMLTableRowElement>;
13326
- /**
13327
- * @deprecated
13328
- *
13329
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableSectionElement/vAlign)
13330
- */
12791
+ /** @deprecated */
13331
12792
  vAlign: string;
13332
12793
  /**
13333
12794
  * Removes the specified row (tr) from the element and from the rows collection.
@@ -13372,6 +12833,8 @@ interface HTMLTemplateElement extends HTMLElement {
13372
12833
  shadowRootDelegatesFocus: boolean;
13373
12834
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootMode) */
13374
12835
  shadowRootMode: string;
12836
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootSerializable) */
12837
+ shadowRootSerializable: boolean;
13375
12838
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
13376
12839
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
13377
12840
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTemplateElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -13389,7 +12852,6 @@ declare var HTMLTemplateElement: {
13389
12852
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement)
13390
12853
  */
13391
12854
  interface HTMLTextAreaElement extends HTMLElement {
13392
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/autocomplete) */
13393
12855
  autocomplete: AutoFill;
13394
12856
  /** Sets or retrieves the width of the object. */
13395
12857
  cols: number;
@@ -13419,7 +12881,6 @@ interface HTMLTextAreaElement extends HTMLElement {
13419
12881
  selectionEnd: number;
13420
12882
  /** Gets or sets the starting position or offset of a text selection. */
13421
12883
  selectionStart: number;
13422
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
13423
12884
  readonly textLength: number;
13424
12885
  /**
13425
12886
  * Retrieves the type of control.
@@ -13439,7 +12900,6 @@ interface HTMLTextAreaElement extends HTMLElement {
13439
12900
  wrap: string;
13440
12901
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
13441
12902
  checkValidity(): boolean;
13442
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
13443
12903
  reportValidity(): boolean;
13444
12904
  /** Highlights the input area of a form element. */
13445
12905
  select(): void;
@@ -13516,23 +12976,14 @@ declare var HTMLTitleElement: {
13516
12976
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
13517
12977
  */
13518
12978
  interface HTMLTrackElement extends HTMLElement {
13519
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
13520
12979
  default: boolean;
13521
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
13522
12980
  kind: string;
13523
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
13524
12981
  label: string;
13525
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
13526
12982
  readonly readyState: number;
13527
12983
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
13528
12984
  src: string;
13529
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
13530
12985
  srclang: string;
13531
- /**
13532
- * Returns the TextTrack object corresponding to the text track of the track element.
13533
- *
13534
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
13535
- */
12986
+ /** Returns the TextTrack object corresponding to the text track of the track element. */
13536
12987
  readonly track: TextTrack;
13537
12988
  readonly NONE: 0;
13538
12989
  readonly LOADING: 1;
@@ -13559,17 +13010,9 @@ declare var HTMLTrackElement: {
13559
13010
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement)
13560
13011
  */
13561
13012
  interface HTMLUListElement extends HTMLElement {
13562
- /**
13563
- * @deprecated
13564
- *
13565
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/compact)
13566
- */
13013
+ /** @deprecated */
13567
13014
  compact: boolean;
13568
- /**
13569
- * @deprecated
13570
- *
13571
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/type)
13572
- */
13015
+ /** @deprecated */
13573
13016
  type: string;
13574
13017
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
13575
13018
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -14400,7 +13843,7 @@ interface IDBTransaction extends EventTarget {
14400
13843
  /**
14401
13844
  * Returns a list of the names of object stores in the transaction's scope. For an upgrade transaction this is all object stores in the database.
14402
13845
  *
14403
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
13846
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/ObjectStoreNames)
14404
13847
  */
14405
13848
  readonly objectStoreNames: DOMStringList;
14406
13849
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
@@ -15328,6 +14771,7 @@ declare var MediaKeySystemAccess: {
15328
14771
  interface MediaKeys {
15329
14772
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/createSession) */
15330
14773
  createSession(sessionType?: MediaKeySessionType): MediaKeySession;
14774
+ getStatusForPolicy(policy?: MediaKeysPolicy): Promise<MediaKeyStatus>;
15331
14775
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/setServerCertificate) */
15332
14776
  setServerCertificate(serverCertificate: BufferSource): Promise<boolean>;
15333
14777
  }
@@ -15516,11 +14960,8 @@ interface MediaSource extends EventTarget {
15516
14960
  readonly activeSourceBuffers: SourceBufferList;
15517
14961
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration) */
15518
14962
  duration: number;
15519
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
15520
14963
  onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
15521
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
15522
14964
  onsourceended: ((this: MediaSource, ev: Event) => any) | null;
15523
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
15524
14965
  onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
15525
14966
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState) */
15526
14967
  readonly readyState: ReadyState;
@@ -15545,10 +14986,21 @@ interface MediaSource extends EventTarget {
15545
14986
  declare var MediaSource: {
15546
14987
  prototype: MediaSource;
15547
14988
  new(): MediaSource;
14989
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/canConstructInDedicatedWorker_static) */
14990
+ readonly canConstructInDedicatedWorker: boolean;
15548
14991
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/isTypeSupported_static) */
15549
14992
  isTypeSupported(type: string): boolean;
15550
14993
  };
15551
14994
 
14995
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSourceHandle) */
14996
+ interface MediaSourceHandle {
14997
+ }
14998
+
14999
+ declare var MediaSourceHandle: {
15000
+ prototype: MediaSourceHandle;
15001
+ new(): MediaSourceHandle;
15002
+ };
15003
+
15552
15004
  interface MediaStreamEventMap {
15553
15005
  "addtrack": MediaStreamTrackEvent;
15554
15006
  "removetrack": MediaStreamTrackEvent;
@@ -15752,11 +15204,7 @@ interface MessageEvent<T = any> extends Event {
15752
15204
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
15753
15205
  */
15754
15206
  readonly source: MessageEventSource | null;
15755
- /**
15756
- * @deprecated
15757
- *
15758
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
15759
- */
15207
+ /** @deprecated */
15760
15208
  initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
15761
15209
  }
15762
15210
 
@@ -15822,29 +15270,21 @@ interface MimeType {
15822
15270
  /**
15823
15271
  * Returns the MIME type's description.
15824
15272
  * @deprecated
15825
- *
15826
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/description)
15827
15273
  */
15828
15274
  readonly description: string;
15829
15275
  /**
15830
15276
  * Returns the Plugin object that implements this MIME type.
15831
15277
  * @deprecated
15832
- *
15833
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/enabledPlugin)
15834
15278
  */
15835
15279
  readonly enabledPlugin: Plugin;
15836
15280
  /**
15837
15281
  * Returns the MIME type's typical file extensions, in a comma-separated list.
15838
15282
  * @deprecated
15839
- *
15840
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/suffixes)
15841
15283
  */
15842
15284
  readonly suffixes: string;
15843
15285
  /**
15844
15286
  * Returns the MIME type.
15845
15287
  * @deprecated
15846
- *
15847
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/type)
15848
15288
  */
15849
15289
  readonly type: string;
15850
15290
  }
@@ -15862,23 +15302,11 @@ declare var MimeType: {
15862
15302
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray)
15863
15303
  */
15864
15304
  interface MimeTypeArray {
15865
- /**
15866
- * @deprecated
15867
- *
15868
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/length)
15869
- */
15305
+ /** @deprecated */
15870
15306
  readonly length: number;
15871
- /**
15872
- * @deprecated
15873
- *
15874
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/item)
15875
- */
15307
+ /** @deprecated */
15876
15308
  item(index: number): MimeType | null;
15877
- /**
15878
- * @deprecated
15879
- *
15880
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/namedItem)
15881
- */
15309
+ /** @deprecated */
15882
15310
  namedItem(name: string): MimeType | null;
15883
15311
  [index: number]: MimeType;
15884
15312
  }
@@ -16349,7 +15777,7 @@ interface NavigatorPlugins {
16349
15777
  /**
16350
15778
  * @deprecated
16351
15779
  *
16352
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigatorPlugins/mimeTypes)
15780
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes)
16353
15781
  */
16354
15782
  readonly mimeTypes: MimeTypeArray;
16355
15783
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */
@@ -16898,7 +16326,9 @@ interface OffscreenCanvas extends EventTarget {
16898
16326
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/height)
16899
16327
  */
16900
16328
  height: number;
16329
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextlost_event) */
16901
16330
  oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;
16331
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextrestored_event) */
16902
16332
  oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;
16903
16333
  /**
16904
16334
  * These attributes return the dimensions of the OffscreenCanvas object's bitmap.
@@ -17809,15 +17239,11 @@ interface Plugin {
17809
17239
  /**
17810
17240
  * Returns the plugin's description.
17811
17241
  * @deprecated
17812
- *
17813
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/description)
17814
17242
  */
17815
17243
  readonly description: string;
17816
17244
  /**
17817
17245
  * Returns the plugin library's filename, if applicable on the current platform.
17818
17246
  * @deprecated
17819
- *
17820
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/filename)
17821
17247
  */
17822
17248
  readonly filename: string;
17823
17249
  /**
@@ -17828,22 +17254,14 @@ interface Plugin {
17828
17254
  /**
17829
17255
  * Returns the plugin's name.
17830
17256
  * @deprecated
17831
- *
17832
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/name)
17833
17257
  */
17834
17258
  readonly name: string;
17835
17259
  /**
17836
17260
  * Returns the specified MimeType object.
17837
17261
  * @deprecated
17838
- *
17839
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/item)
17840
17262
  */
17841
17263
  item(index: number): MimeType | null;
17842
- /**
17843
- * @deprecated
17844
- *
17845
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/namedItem)
17846
- */
17264
+ /** @deprecated */
17847
17265
  namedItem(name: string): MimeType | null;
17848
17266
  [index: number]: MimeType;
17849
17267
  }
@@ -17861,29 +17279,13 @@ declare var Plugin: {
17861
17279
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray)
17862
17280
  */
17863
17281
  interface PluginArray {
17864
- /**
17865
- * @deprecated
17866
- *
17867
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/length)
17868
- */
17282
+ /** @deprecated */
17869
17283
  readonly length: number;
17870
- /**
17871
- * @deprecated
17872
- *
17873
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/item)
17874
- */
17284
+ /** @deprecated */
17875
17285
  item(index: number): Plugin | null;
17876
- /**
17877
- * @deprecated
17878
- *
17879
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/namedItem)
17880
- */
17286
+ /** @deprecated */
17881
17287
  namedItem(name: string): Plugin | null;
17882
- /**
17883
- * @deprecated
17884
- *
17885
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/refresh)
17886
- */
17288
+ /** @deprecated */
17887
17289
  refresh(): void;
17888
17290
  [index: number]: Plugin;
17889
17291
  }
@@ -17941,6 +17343,7 @@ declare var PointerEvent: {
17941
17343
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent)
17942
17344
  */
17943
17345
  interface PopStateEvent extends Event {
17346
+ readonly hasUAVisualTransition: boolean;
17944
17347
  /**
17945
17348
  * Returns a copy of the information that was provided to pushState() or replaceState().
17946
17349
  *
@@ -18016,6 +17419,7 @@ declare var PromiseRejectionEvent: {
18016
17419
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential)
18017
17420
  */
18018
17421
  interface PublicKeyCredential extends Credential {
17422
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/authenticatorAttachment) */
18019
17423
  readonly authenticatorAttachment: string | null;
18020
17424
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId) */
18021
17425
  readonly rawId: ArrayBuffer;
@@ -18235,12 +17639,11 @@ interface RTCDtlsTransportEventMap {
18235
17639
  interface RTCDtlsTransport extends EventTarget {
18236
17640
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/iceTransport) */
18237
17641
  readonly iceTransport: RTCIceTransport;
17642
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/error_event) */
18238
17643
  onerror: ((this: RTCDtlsTransport, ev: Event) => any) | null;
18239
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/statechange_event) */
18240
17644
  onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
18241
17645
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state) */
18242
17646
  readonly state: RTCDtlsTransportState;
18243
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/getRemoteCertificates) */
18244
17647
  getRemoteCertificates(): ArrayBuffer[];
18245
17648
  addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
18246
17649
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -18358,6 +17761,11 @@ declare var RTCIceCandidate: {
18358
17761
  new(candidateInitDict?: RTCIceCandidateInit): RTCIceCandidate;
18359
17762
  };
18360
17763
 
17764
+ interface RTCIceCandidatePair {
17765
+ local: RTCIceCandidate;
17766
+ remote: RTCIceCandidate;
17767
+ }
17768
+
18361
17769
  interface RTCIceTransportEventMap {
18362
17770
  "gatheringstatechange": Event;
18363
17771
  "selectedcandidatepairchange": Event;
@@ -18514,12 +17922,9 @@ declare var RTCPeerConnection: {
18514
17922
  interface RTCPeerConnectionIceErrorEvent extends Event {
18515
17923
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/address) */
18516
17924
  readonly address: string | null;
18517
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorCode) */
18518
17925
  readonly errorCode: number;
18519
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorText) */
18520
17926
  readonly errorText: string;
18521
17927
  readonly port: number | null;
18522
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/url) */
18523
17928
  readonly url: string;
18524
17929
  }
18525
17930
 
@@ -18549,6 +17954,7 @@ declare var RTCPeerConnectionIceEvent: {
18549
17954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver)
18550
17955
  */
18551
17956
  interface RTCRtpReceiver {
17957
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget) */
18552
17958
  jitterBufferTarget: DOMHighResTimeStamp | null;
18553
17959
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track) */
18554
17960
  readonly track: MediaStreamTrack;
@@ -18648,6 +18054,7 @@ interface RTCSctpTransport extends EventTarget {
18648
18054
  readonly maxChannels: number | null;
18649
18055
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */
18650
18056
  readonly maxMessageSize: number;
18057
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
18651
18058
  onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
18652
18059
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/state) */
18653
18060
  readonly state: RTCSctpTransportState;
@@ -18967,6 +18374,7 @@ declare var Report: {
18967
18374
 
18968
18375
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody) */
18969
18376
  interface ReportBody {
18377
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON) */
18970
18378
  toJSON(): any;
18971
18379
  }
18972
18380
 
@@ -19026,11 +18434,7 @@ interface Request extends Body {
19026
18434
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
19027
18435
  */
19028
18436
  readonly integrity: string;
19029
- /**
19030
- * Returns a boolean indicating whether or not request can outlive the global in which it was created.
19031
- *
19032
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19033
- */
18437
+ /** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19034
18438
  readonly keepalive: boolean;
19035
18439
  /**
19036
18440
  * Returns request's HTTP method, which is "GET" by default.
@@ -19106,6 +18510,7 @@ interface ResizeObserverEntry {
19106
18510
  readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
19107
18511
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect) */
19108
18512
  readonly contentRect: DOMRectReadOnly;
18513
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/devicePixelContentBoxSize) */
19109
18514
  readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
19110
18515
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target) */
19111
18516
  readonly target: Element;
@@ -19289,7 +18694,9 @@ declare var SVGAnimatedBoolean: {
19289
18694
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration)
19290
18695
  */
19291
18696
  interface SVGAnimatedEnumeration {
18697
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/animVal) */
19292
18698
  readonly animVal: number;
18699
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/baseVal) */
19293
18700
  baseVal: number;
19294
18701
  }
19295
18702
 
@@ -19319,7 +18726,9 @@ declare var SVGAnimatedInteger: {
19319
18726
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength)
19320
18727
  */
19321
18728
  interface SVGAnimatedLength {
18729
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/animVal) */
19322
18730
  readonly animVal: SVGLength;
18731
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/baseVal) */
19323
18732
  readonly baseVal: SVGLength;
19324
18733
  }
19325
18734
 
@@ -19681,11 +19090,8 @@ declare var SVGFEBlendElement: {
19681
19090
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
19682
19091
  */
19683
19092
  interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
19684
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
19685
19093
  readonly in1: SVGAnimatedString;
19686
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
19687
19094
  readonly type: SVGAnimatedEnumeration;
19688
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
19689
19095
  readonly values: SVGAnimatedNumberList;
19690
19096
  readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
19691
19097
  readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
@@ -20375,7 +19781,6 @@ declare var SVGGraphicsElement: {
20375
19781
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
20376
19782
  */
20377
19783
  interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
20378
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
20379
19784
  crossOrigin: string | null;
20380
19785
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
20381
19786
  readonly height: SVGAnimatedLength;
@@ -21324,6 +20729,7 @@ interface ScreenOrientationEventMap {
21324
20729
  interface ScreenOrientation extends EventTarget {
21325
20730
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle) */
21326
20731
  readonly angle: number;
20732
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
21327
20733
  onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
21328
20734
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type) */
21329
20735
  readonly type: OrientationType;
@@ -21422,6 +20828,7 @@ interface Selection {
21422
20828
  readonly anchorNode: Node | null;
21423
20829
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset) */
21424
20830
  readonly anchorOffset: number;
20831
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/direction) */
21425
20832
  readonly direction: string;
21426
20833
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusNode) */
21427
20834
  readonly focusNode: Node | null;
@@ -21607,8 +21014,13 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
21607
21014
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode) */
21608
21015
  readonly mode: ShadowRootMode;
21609
21016
  onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
21017
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/serializable) */
21018
+ readonly serializable: boolean;
21610
21019
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
21611
21020
  readonly slotAssignment: SlotAssignmentMode;
21021
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/getHTML) */
21022
+ getHTML(options?: GetHTMLOptions): string;
21023
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe) */
21612
21024
  setHTMLUnsafe(html: string): void;
21613
21025
  /** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
21614
21026
  addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -21668,15 +21080,10 @@ interface SourceBuffer extends EventTarget {
21668
21080
  readonly buffered: TimeRanges;
21669
21081
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/mode) */
21670
21082
  mode: AppendMode;
21671
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/abort_event) */
21672
21083
  onabort: ((this: SourceBuffer, ev: Event) => any) | null;
21673
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/error_event) */
21674
21084
  onerror: ((this: SourceBuffer, ev: Event) => any) | null;
21675
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/update_event) */
21676
21085
  onupdate: ((this: SourceBuffer, ev: Event) => any) | null;
21677
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updateend_event) */
21678
21086
  onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
21679
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updatestart_event) */
21680
21087
  onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
21681
21088
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset) */
21682
21089
  timestampOffset: number;
@@ -21714,9 +21121,7 @@ interface SourceBufferListEventMap {
21714
21121
  interface SourceBufferList extends EventTarget {
21715
21122
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length) */
21716
21123
  readonly length: number;
21717
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/addsourcebuffer_event) */
21718
21124
  onaddsourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
21719
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/removesourcebuffer_event) */
21720
21125
  onremovesourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
21721
21126
  addEventListener<K extends keyof SourceBufferListEventMap>(type: K, listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21722
21127
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -22636,7 +22041,7 @@ interface TextTrackList extends EventTarget {
22636
22041
  onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
22637
22042
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/change_event) */
22638
22043
  onchange: ((this: TextTrackList, ev: Event) => any) | null;
22639
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
22044
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removeTrack_event) */
22640
22045
  onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
22641
22046
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById) */
22642
22047
  getTrackById(id: string): TextTrack | null;
@@ -22953,9 +22358,11 @@ declare var URL: {
22953
22358
  prototype: URL;
22954
22359
  new(url: string | URL, base?: string | URL): URL;
22955
22360
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) */
22956
- canParse(url: string | URL, base?: string): boolean;
22361
+ canParse(url: string | URL, base?: string | URL): boolean;
22957
22362
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static) */
22958
22363
  createObjectURL(obj: Blob | MediaSource): string;
22364
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
22365
+ parse(url: string | URL, base?: string | URL): URL | null;
22959
22366
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static) */
22960
22367
  revokeObjectURL(url: string): void;
22961
22368
  };
@@ -23065,21 +22472,13 @@ declare var VTTCue: {
23065
22472
 
23066
22473
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion) */
23067
22474
  interface VTTRegion {
23068
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/id) */
23069
22475
  id: string;
23070
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/lines) */
23071
22476
  lines: number;
23072
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorX) */
23073
22477
  regionAnchorX: number;
23074
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorY) */
23075
22478
  regionAnchorY: number;
23076
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/scroll) */
23077
22479
  scroll: ScrollSetting;
23078
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorX) */
23079
22480
  viewportAnchorX: number;
23080
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorY) */
23081
22481
  viewportAnchorY: number;
23082
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/width) */
23083
22482
  width: number;
23084
22483
  }
23085
22484
 
@@ -23096,7 +22495,6 @@ declare var VTTRegion: {
23096
22495
  interface ValidityState {
23097
22496
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/badInput) */
23098
22497
  readonly badInput: boolean;
23099
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/customError) */
23100
22498
  readonly customError: boolean;
23101
22499
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/patternMismatch) */
23102
22500
  readonly patternMismatch: boolean;
@@ -23112,7 +22510,6 @@ interface ValidityState {
23112
22510
  readonly tooShort: boolean;
23113
22511
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/typeMismatch) */
23114
22512
  readonly typeMismatch: boolean;
23115
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valid) */
23116
22513
  readonly valid: boolean;
23117
22514
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ValidityState/valueMissing) */
23118
22515
  readonly valueMissing: boolean;
@@ -23154,6 +22551,7 @@ interface VideoDecoderEventMap {
23154
22551
  interface VideoDecoder extends EventTarget {
23155
22552
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decodeQueueSize) */
23156
22553
  readonly decodeQueueSize: number;
22554
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/dequeue_event) */
23157
22555
  ondequeue: ((this: VideoDecoder, ev: Event) => any) | null;
23158
22556
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/state) */
23159
22557
  readonly state: CodecState;
@@ -23176,6 +22574,7 @@ interface VideoDecoder extends EventTarget {
23176
22574
  declare var VideoDecoder: {
23177
22575
  prototype: VideoDecoder;
23178
22576
  new(init: VideoDecoderInit): VideoDecoder;
22577
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/isConfigSupported_static) */
23179
22578
  isConfigSupported(config: VideoDecoderConfig): Promise<VideoDecoderSupport>;
23180
22579
  };
23181
22580
 
@@ -23191,6 +22590,7 @@ interface VideoEncoderEventMap {
23191
22590
  interface VideoEncoder extends EventTarget {
23192
22591
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encodeQueueSize) */
23193
22592
  readonly encodeQueueSize: number;
22593
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/dequeue_event) */
23194
22594
  ondequeue: ((this: VideoEncoder, ev: Event) => any) | null;
23195
22595
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/state) */
23196
22596
  readonly state: CodecState;
@@ -23200,6 +22600,7 @@ interface VideoEncoder extends EventTarget {
23200
22600
  configure(config: VideoEncoderConfig): void;
23201
22601
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encode) */
23202
22602
  encode(frame: VideoFrame, options?: VideoEncoderEncodeOptions): void;
22603
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/flush) */
23203
22604
  flush(): Promise<void>;
23204
22605
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/reset) */
23205
22606
  reset(): void;
@@ -23212,6 +22613,7 @@ interface VideoEncoder extends EventTarget {
23212
22613
  declare var VideoEncoder: {
23213
22614
  prototype: VideoEncoder;
23214
22615
  new(init: VideoEncoderInit): VideoEncoder;
22616
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/isConfigSupported_static) */
23215
22617
  isConfigSupported(config: VideoEncoderConfig): Promise<VideoEncoderSupport>;
23216
22618
  };
23217
22619
 
@@ -23243,6 +22645,7 @@ interface VideoFrame {
23243
22645
  clone(): VideoFrame;
23244
22646
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/close) */
23245
22647
  close(): void;
22648
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/copyTo) */
23246
22649
  copyTo(destination: AllowSharedBufferSource, options?: VideoFrameCopyToOptions): Promise<PlaneLayout[]>;
23247
22650
  }
23248
22651
 
@@ -23277,6 +22680,23 @@ declare var VideoPlaybackQuality: {
23277
22680
  new(): VideoPlaybackQuality;
23278
22681
  };
23279
22682
 
22683
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition) */
22684
+ interface ViewTransition {
22685
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/finished) */
22686
+ readonly finished: Promise<undefined>;
22687
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready) */
22688
+ readonly ready: Promise<undefined>;
22689
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone) */
22690
+ readonly updateCallbackDone: Promise<undefined>;
22691
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition) */
22692
+ skipTransition(): void;
22693
+ }
22694
+
22695
+ declare var ViewTransition: {
22696
+ prototype: ViewTransition;
22697
+ new(): ViewTransition;
22698
+ };
22699
+
23280
22700
  interface VisualViewportEventMap {
23281
22701
  "resize": Event;
23282
22702
  "scroll": Event;
@@ -24142,7 +23562,7 @@ interface WebGL2RenderingContextBase {
24142
23562
  clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;
24143
23563
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */
24144
23564
  clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
24145
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */
23565
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
24146
23566
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
24147
23567
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
24148
23568
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */
@@ -25025,6 +24445,7 @@ declare var WebGLRenderingContext: {
25025
24445
  interface WebGLRenderingContextBase {
25026
24446
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/canvas) */
25027
24447
  readonly canvas: HTMLCanvasElement | OffscreenCanvas;
24448
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferColorSpace) */
25028
24449
  drawingBufferColorSpace: PredefinedColorSpace;
25029
24450
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferHeight) */
25030
24451
  readonly drawingBufferHeight: GLsizei;
@@ -25734,7 +25155,7 @@ declare var WebGLVertexArrayObject: {
25734
25155
  new(): WebGLVertexArrayObject;
25735
25156
  };
25736
25157
 
25737
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObjectOES) */
25158
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */
25738
25159
  interface WebGLVertexArrayObjectOES {
25739
25160
  }
25740
25161
 
@@ -26315,24 +25736,24 @@ interface WindowOrWorkerGlobalScope {
26315
25736
  /**
26316
25737
  * Available only in secure contexts.
26317
25738
  *
26318
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
25739
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
26319
25740
  */
26320
25741
  readonly caches: CacheStorage;
26321
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
25742
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
26322
25743
  readonly crossOriginIsolated: boolean;
26323
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crypto_property) */
25744
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
26324
25745
  readonly crypto: Crypto;
26325
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
25746
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
26326
25747
  readonly indexedDB: IDBFactory;
26327
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
25748
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
26328
25749
  readonly isSecureContext: boolean;
26329
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
25750
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
26330
25751
  readonly origin: string;
26331
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/performance_property) */
25752
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
26332
25753
  readonly performance: Performance;
26333
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
25754
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
26334
25755
  atob(data: string): string;
26335
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
25756
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
26336
25757
  btoa(data: string): string;
26337
25758
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
26338
25759
  clearInterval(id: number | undefined): void;
@@ -26839,7 +26260,7 @@ interface Console {
26839
26260
  clear(): void;
26840
26261
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
26841
26262
  count(label?: string): void;
26842
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
26263
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static) */
26843
26264
  countReset(label?: string): void;
26844
26265
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
26845
26266
  debug(...data: any[]): void;
@@ -26851,9 +26272,9 @@ interface Console {
26851
26272
  error(...data: any[]): void;
26852
26273
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
26853
26274
  group(...data: any[]): void;
26854
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
26275
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static) */
26855
26276
  groupCollapsed(...data: any[]): void;
26856
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
26277
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static) */
26857
26278
  groupEnd(): void;
26858
26279
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
26859
26280
  info(...data: any[]): void;
@@ -26863,9 +26284,9 @@ interface Console {
26863
26284
  table(tabularData?: any, properties?: string[]): void;
26864
26285
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
26865
26286
  time(label?: string): void;
26866
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
26287
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static) */
26867
26288
  timeEnd(label?: string): void;
26868
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
26289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static) */
26869
26290
  timeLog(label?: string, ...data: any[]): void;
26870
26291
  timeStamp(label?: string): void;
26871
26292
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
@@ -27017,9 +26438,7 @@ declare namespace WebAssembly {
27017
26438
 
27018
26439
  /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
27019
26440
  interface Global<T extends ValueType = ValueType> {
27020
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
27021
26441
  value: ValueTypeMap[T];
27022
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
27023
26442
  valueOf(): ValueTypeMap[T];
27024
26443
  }
27025
26444
 
@@ -27318,6 +26737,10 @@ interface UnderlyingSourceStartCallback<R> {
27318
26737
  (controller: ReadableStreamController<R>): any;
27319
26738
  }
27320
26739
 
26740
+ interface UpdateCallback {
26741
+ (): any;
26742
+ }
26743
+
27321
26744
  interface VideoFrameOutputCallback {
27322
26745
  (output: VideoFrame): void;
27323
26746
  }
@@ -27894,7 +27317,7 @@ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
27894
27317
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
27895
27318
  */
27896
27319
  declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
27897
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
27320
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
27898
27321
  declare var oncancel: ((this: Window, ev: Event) => any) | null;
27899
27322
  /**
27900
27323
  * Occurs when playback is possible, but would require further buffering.
@@ -28082,7 +27505,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
28082
27505
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
28083
27506
  */
28084
27507
  declare var onloadstart: ((this: Window, ev: Event) => any) | null;
28085
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
27508
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
28086
27509
  declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
28087
27510
  /**
28088
27511
  * Fires when the user clicks the object with either mouse button.
@@ -28349,24 +27772,24 @@ declare var localStorage: Storage;
28349
27772
  /**
28350
27773
  * Available only in secure contexts.
28351
27774
  *
28352
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
27775
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
28353
27776
  */
28354
27777
  declare var caches: CacheStorage;
28355
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
27778
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
28356
27779
  declare var crossOriginIsolated: boolean;
28357
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crypto_property) */
27780
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
28358
27781
  declare var crypto: Crypto;
28359
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
27782
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
28360
27783
  declare var indexedDB: IDBFactory;
28361
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
27784
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
28362
27785
  declare var isSecureContext: boolean;
28363
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
27786
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
28364
27787
  declare var origin: string;
28365
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/performance_property) */
27788
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
28366
27789
  declare var performance: Performance;
28367
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
27790
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
28368
27791
  declare function atob(data: string): string;
28369
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
27792
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
28370
27793
  declare function btoa(data: string): string;
28371
27794
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
28372
27795
  declare function clearInterval(id: number | undefined): void;
@@ -28460,7 +27883,7 @@ type ReportList = Report[];
28460
27883
  type RequestInfo = Request | string;
28461
27884
  type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
28462
27885
  type TimerHandler = string | Function;
28463
- type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer;
27886
+ type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer;
28464
27887
  type Uint32List = Uint32Array | GLuint[];
28465
27888
  type VibratePattern = number | number[];
28466
27889
  type WindowProxy = Window;