@@ -4875,8 +4875,6 @@ interface CSSStyleDeclaration {
4875
4875
pointerEvents: string;
4876
4876
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
4877
4877
position: string;
4878
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4879
- positionArea: string;
4880
4878
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
4881
4879
printColorAdjust: string;
4882
4880
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -4997,6 +4995,9 @@ interface CSSStyleDeclaration {
4997
4995
textAlignLast: string;
4998
4996
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
4999
4997
textAnchor: string;
4998
+ textBox: string;
4999
+ textBoxEdge: string;
5000
+ textBoxTrim: string;
5000
5001
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
5001
5002
textCombineUpright: string;
5002
5003
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
@@ -6630,17 +6631,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6630
6631
m43: number;
6631
6632
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6632
6633
m44: number;
6634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
6633
6635
invertSelf(): DOMMatrix;
6634
6636
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6635
6637
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6636
6638
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6637
6639
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6640
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
6638
6641
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6639
6642
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6640
6643
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6644
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
6641
6645
setMatrixValue(transformList: string): DOMMatrix;
6646
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
6642
6647
skewXSelf(sx?: number): DOMMatrix;
6648
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
6643
6649
skewYSelf(sy?: number): DOMMatrix;
6650
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
6644
6651
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
6645
6652
}
6646
6653
@@ -6709,6 +6716,7 @@ interface DOMMatrixReadOnly {
6709
6716
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
6710
6717
flipX(): DOMMatrix;
6711
6718
flipY(): DOMMatrix;
6719
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6712
6720
inverse(): DOMMatrix;
6713
6721
multiply(other?: DOMMatrixInit): DOMMatrix;
6714
6722
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -6723,6 +6731,7 @@ interface DOMMatrixReadOnly {
6723
6731
skewY(sy?: number): DOMMatrix;
6724
6732
toFloat32Array(): Float32Array;
6725
6733
toFloat64Array(): Float64Array;
6734
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
6726
6735
toJSON(): any;
6727
6736
transformPoint(point?: DOMPointInit): DOMPoint;
6728
6737
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -7871,7 +7880,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7871
7880
*
7872
7881
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
7873
7882
*/
7874
- importNode<T extends Node>(node: T, deep ?: boolean): T;
7883
+ importNode<T extends Node>(node: T, subtree ?: boolean): T;
7875
7884
/**
7876
7885
* Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
7877
7886
* @param url Specifies a MIME type for the document.
@@ -7928,6 +7937,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7928
7937
/**
7929
7938
* Writes one or more HTML expressions to a document in the specified window.
7930
7939
* @param content Specifies the text and HTML tags to write.
7940
+ * @deprecated
7931
7941
*
7932
7942
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
7933
7943
*/
@@ -10682,6 +10692,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10682
10692
title: string;
10683
10693
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10684
10694
translate: boolean;
10695
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
10685
10696
writingSuggestions: string;
10686
10697
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10687
10698
attachInternals(): ElementInternals;
@@ -17033,7 +17044,7 @@ interface Node extends EventTarget {
17033
17044
*
17034
17045
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
17035
17046
*/
17036
- cloneNode(deep ?: boolean): Node;
17047
+ cloneNode(subtree ?: boolean): Node;
17037
17048
/**
17038
17049
* Returns a bitmask indicating the position of other relative to node.
17039
17050
*
@@ -19931,7 +19942,9 @@ declare var SVGAnimateTransformElement: {
19931
19942
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
19932
19943
*/
19933
19944
interface SVGAnimatedAngle {
19945
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
19934
19946
readonly animVal: SVGAngle;
19947
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
19935
19948
readonly baseVal: SVGAngle;
19936
19949
}
19937
19950
@@ -19946,7 +19959,9 @@ declare var SVGAnimatedAngle: {
19946
19959
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
19947
19960
*/
19948
19961
interface SVGAnimatedBoolean {
19962
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
19949
19963
readonly animVal: boolean;
19964
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
19950
19965
baseVal: boolean;
19951
19966
}
19952
19967
@@ -20010,7 +20025,9 @@ declare var SVGAnimatedLength: {
20010
20025
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
20011
20026
*/
20012
20027
interface SVGAnimatedLengthList {
20028
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
20013
20029
readonly animVal: SVGLengthList;
20030
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
20014
20031
readonly baseVal: SVGLengthList;
20015
20032
}
20016
20033
@@ -20025,7 +20042,9 @@ declare var SVGAnimatedLengthList: {
20025
20042
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
20026
20043
*/
20027
20044
interface SVGAnimatedNumber {
20045
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
20028
20046
readonly animVal: number;
20047
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
20029
20048
baseVal: number;
20030
20049
}
20031
20050
@@ -20040,7 +20059,9 @@ declare var SVGAnimatedNumber: {
20040
20059
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
20041
20060
*/
20042
20061
interface SVGAnimatedNumberList {
20062
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
20043
20063
readonly animVal: SVGNumberList;
20064
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
20044
20065
readonly baseVal: SVGNumberList;
20045
20066
}
20046
20067
@@ -20075,7 +20096,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
20075
20096
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
20076
20097
*/
20077
20098
interface SVGAnimatedRect {
20099
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
20078
20100
readonly animVal: DOMRectReadOnly;
20101
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
20079
20102
readonly baseVal: DOMRect;
20080
20103
}
20081
20104
@@ -20107,7 +20130,9 @@ declare var SVGAnimatedString: {
20107
20130
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
20108
20131
*/
20109
20132
interface SVGAnimatedTransformList {
20133
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
20110
20134
readonly animVal: SVGTransformList;
20135
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
20111
20136
readonly baseVal: SVGTransformList;
20112
20137
}
20113
20138
@@ -20120,9 +20145,13 @@ declare var SVGAnimatedTransformList: {
20120
20145
interface SVGAnimationElement extends SVGElement, SVGTests {
20121
20146
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
20122
20147
readonly targetElement: SVGElement | null;
20148
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
20123
20149
beginElement(): void;
20150
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
20124
20151
beginElementAt(offset: number): void;
20152
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
20125
20153
endElement(): void;
20154
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
20126
20155
endElementAt(offset: number): void;
20127
20156
getCurrentTime(): number;
20128
20157
getSimpleDuration(): number;
@@ -21721,7 +21750,9 @@ declare var SVGTSpanElement: {
21721
21750
};
21722
21751
21723
21752
interface SVGTests {
21753
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
21724
21754
readonly requiredExtensions: SVGStringList;
21755
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
21725
21756
readonly systemLanguage: SVGStringList;
21726
21757
}
21727
21758
@@ -25957,6 +25988,7 @@ interface WebGLRenderingContextBase {
25957
25988
isShader(shader: WebGLShader | null): GLboolean;
25958
25989
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
25959
25990
isTexture(texture: WebGLTexture | null): GLboolean;
25991
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
25960
25992
lineWidth(width: GLfloat): void;
25961
25993
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
25962
25994
linkProgram(program: WebGLProgram): void;
0 commit comments