@@ -685,15 +685,18 @@ interface IntersectionObserverEntryInit {
685
685
intersectionRatio: number;
686
686
intersectionRect: DOMRectInit;
687
687
isIntersecting: boolean;
688
+ isVisible: boolean;
688
689
rootBounds: DOMRectInit | null;
689
690
target: Element;
690
691
time: DOMHighResTimeStamp;
691
692
}
692
693
693
694
interface IntersectionObserverInit {
695
+ delay?: number;
694
696
root?: Element | Document | null;
695
697
rootMargin?: string;
696
698
threshold?: number | number[];
699
+ trackVisibility?: boolean;
697
700
}
698
701
699
702
interface JsonWebKey {
@@ -899,6 +902,7 @@ interface MediaStreamTrackEventInit extends EventInit {
899
902
interface MediaTrackCapabilities {
900
903
aspectRatio?: DoubleRange;
901
904
autoGainControl?: boolean[];
905
+ backgroundBlur?: boolean[];
902
906
channelCount?: ULongRange;
903
907
deviceId?: string;
904
908
displaySurface?: string;
@@ -916,6 +920,7 @@ interface MediaTrackCapabilities {
916
920
interface MediaTrackConstraintSet {
917
921
aspectRatio?: ConstrainDouble;
918
922
autoGainControl?: ConstrainBoolean;
923
+ backgroundBlur?: ConstrainBoolean;
919
924
channelCount?: ConstrainULong;
920
925
deviceId?: ConstrainDOMString;
921
926
displaySurface?: ConstrainDOMString;
@@ -937,6 +942,7 @@ interface MediaTrackConstraints extends MediaTrackConstraintSet {
937
942
interface MediaTrackSettings {
938
943
aspectRatio?: number;
939
944
autoGainControl?: boolean;
945
+ backgroundBlur?: boolean;
940
946
channelCount?: number;
941
947
deviceId?: string;
942
948
displaySurface?: string;
@@ -954,6 +960,7 @@ interface MediaTrackSettings {
954
960
interface MediaTrackSupportedConstraints {
955
961
aspectRatio?: boolean;
956
962
autoGainControl?: boolean;
963
+ backgroundBlur?: boolean;
957
964
channelCount?: boolean;
958
965
deviceId?: boolean;
959
966
displaySurface?: boolean;
@@ -4109,9 +4116,11 @@ interface CSSStyleDeclaration {
4109
4116
columns: string;
4110
4117
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
4111
4118
contain: string;
4119
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size) */
4112
4120
containIntrinsicBlockSize: string;
4113
4121
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
4114
4122
containIntrinsicHeight: string;
4123
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size) */
4115
4124
containIntrinsicInlineSize: string;
4116
4125
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
4117
4126
containIntrinsicSize: string;
@@ -6148,27 +6157,49 @@ declare var DOMImplementation: {
6148
6157
6149
6158
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix) */
6150
6159
interface DOMMatrix extends DOMMatrixReadOnly {
6160
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6151
6161
a: number;
6162
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6152
6163
b: number;
6164
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6153
6165
c: number;
6166
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6154
6167
d: number;
6168
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6155
6169
e: number;
6170
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6156
6171
f: number;
6172
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6157
6173
m11: number;
6174
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6158
6175
m12: number;
6176
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6159
6177
m13: number;
6178
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6160
6179
m14: number;
6180
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6161
6181
m21: number;
6182
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6162
6183
m22: number;
6184
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6163
6185
m23: number;
6186
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6164
6187
m24: number;
6188
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6165
6189
m31: number;
6190
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6166
6191
m32: number;
6192
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6167
6193
m33: number;
6194
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6168
6195
m34: number;
6196
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6169
6197
m41: number;
6198
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6170
6199
m42: number;
6200
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6171
6201
m43: number;
6202
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6172
6203
m44: number;
6173
6204
invertSelf(): DOMMatrix;
6174
6205
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
@@ -6200,29 +6231,51 @@ declare var WebKitCSSMatrix: typeof DOMMatrix;
6200
6231
6201
6232
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly) */
6202
6233
interface DOMMatrixReadOnly {
6234
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6203
6235
readonly a: number;
6236
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6204
6237
readonly b: number;
6238
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6205
6239
readonly c: number;
6240
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6206
6241
readonly d: number;
6242
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6207
6243
readonly e: number;
6244
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6208
6245
readonly f: number;
6209
6246
readonly is2D: boolean;
6210
6247
readonly isIdentity: boolean;
6248
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6211
6249
readonly m11: number;
6250
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6212
6251
readonly m12: number;
6252
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6213
6253
readonly m13: number;
6254
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6214
6255
readonly m14: number;
6256
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6215
6257
readonly m21: number;
6258
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6216
6259
readonly m22: number;
6260
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6217
6261
readonly m23: number;
6262
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6218
6263
readonly m24: number;
6264
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6219
6265
readonly m31: number;
6266
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6220
6267
readonly m32: number;
6268
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6221
6269
readonly m33: number;
6270
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6222
6271
readonly m34: number;
6272
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6223
6273
readonly m41: number;
6274
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6224
6275
readonly m42: number;
6276
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6225
6277
readonly m43: number;
6278
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6226
6279
readonly m44: number;
6227
6280
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
6228
6281
flipX(): DOMMatrix;
@@ -10052,6 +10105,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10052
10105
title: string;
10053
10106
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10054
10107
translate: boolean;
10108
+ writingSuggestions: string;
10055
10109
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10056
10110
attachInternals(): ElementInternals;
10057
10111
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/click) */
@@ -11117,7 +11171,11 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11117
11171
disabled: boolean;
11118
11172
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority) */
11119
11173
fetchPriority: string;
11120
- /** Sets or retrieves a destination URL or an anchor point. */
11174
+ /**
11175
+ * Sets or retrieves a destination URL or an anchor point.
11176
+ *
11177
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
11178
+ */
11121
11179
href: string;
11122
11180
/**
11123
11181
* Sets or retrieves the language code of the object.
@@ -21588,7 +21646,7 @@ interface SubtleCrypto {
21588
21646
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt) */
21589
21647
decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
21590
21648
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits) */
21591
- deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length: number): Promise<ArrayBuffer>;
21649
+ deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length? : number | null ): Promise<ArrayBuffer>;
21592
21650
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey) */
21593
21651
deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;
21594
21652
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest) */
@@ -26149,7 +26207,11 @@ declare var XPathEvaluator: {
26149
26207
interface XPathEvaluatorBase {
26150
26208
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createExpression) */
26151
26209
createExpression(expression: string, resolver?: XPathNSResolver | null): XPathExpression;
26152
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNSResolver) */
26210
+ /**
26211
+ * @deprecated
26212
+ *
26213
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNSResolver)
26214
+ */
26153
26215
createNSResolver(nodeResolver: Node): Node;
26154
26216
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/evaluate) */
26155
26217
evaluate(expression: string, contextNode: Node, resolver?: XPathNSResolver | null, type?: number, result?: XPathResult | null): XPathResult;
0 commit comments