@@ -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) */
@@ -10682,6 +10691,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10682
10691
title: string;
10683
10692
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10684
10693
translate: boolean;
10694
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
10685
10695
writingSuggestions: string;
10686
10696
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10687
10697
attachInternals(): ElementInternals;
@@ -19931,7 +19941,9 @@ declare var SVGAnimateTransformElement: {
19931
19941
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
19932
19942
*/
19933
19943
interface SVGAnimatedAngle {
19944
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
19934
19945
readonly animVal: SVGAngle;
19946
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
19935
19947
readonly baseVal: SVGAngle;
19936
19948
}
19937
19949
@@ -19946,7 +19958,9 @@ declare var SVGAnimatedAngle: {
19946
19958
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
19947
19959
*/
19948
19960
interface SVGAnimatedBoolean {
19961
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
19949
19962
readonly animVal: boolean;
19963
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
19950
19964
baseVal: boolean;
19951
19965
}
19952
19966
@@ -20010,7 +20024,9 @@ declare var SVGAnimatedLength: {
20010
20024
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
20011
20025
*/
20012
20026
interface SVGAnimatedLengthList {
20027
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
20013
20028
readonly animVal: SVGLengthList;
20029
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
20014
20030
readonly baseVal: SVGLengthList;
20015
20031
}
20016
20032
@@ -20025,7 +20041,9 @@ declare var SVGAnimatedLengthList: {
20025
20041
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
20026
20042
*/
20027
20043
interface SVGAnimatedNumber {
20044
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
20028
20045
readonly animVal: number;
20046
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
20029
20047
baseVal: number;
20030
20048
}
20031
20049
@@ -20040,7 +20058,9 @@ declare var SVGAnimatedNumber: {
20040
20058
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
20041
20059
*/
20042
20060
interface SVGAnimatedNumberList {
20061
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
20043
20062
readonly animVal: SVGNumberList;
20063
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
20044
20064
readonly baseVal: SVGNumberList;
20045
20065
}
20046
20066
@@ -20075,7 +20095,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
20075
20095
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
20076
20096
*/
20077
20097
interface SVGAnimatedRect {
20098
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
20078
20099
readonly animVal: DOMRectReadOnly;
20100
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
20079
20101
readonly baseVal: DOMRect;
20080
20102
}
20081
20103
@@ -20107,7 +20129,9 @@ declare var SVGAnimatedString: {
20107
20129
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
20108
20130
*/
20109
20131
interface SVGAnimatedTransformList {
20132
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
20110
20133
readonly animVal: SVGTransformList;
20134
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
20111
20135
readonly baseVal: SVGTransformList;
20112
20136
}
20113
20137
@@ -20120,9 +20144,13 @@ declare var SVGAnimatedTransformList: {
20120
20144
interface SVGAnimationElement extends SVGElement, SVGTests {
20121
20145
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
20122
20146
readonly targetElement: SVGElement | null;
20147
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
20123
20148
beginElement(): void;
20149
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
20124
20150
beginElementAt(offset: number): void;
20151
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
20125
20152
endElement(): void;
20153
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
20126
20154
endElementAt(offset: number): void;
20127
20155
getCurrentTime(): number;
20128
20156
getSimpleDuration(): number;
@@ -21721,7 +21749,9 @@ declare var SVGTSpanElement: {
21721
21749
};
21722
21750
21723
21751
interface SVGTests {
21752
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
21724
21753
readonly requiredExtensions: SVGStringList;
21754
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
21725
21755
readonly systemLanguage: SVGStringList;
21726
21756
}
21727
21757
@@ -25957,6 +25987,7 @@ interface WebGLRenderingContextBase {
25957
25987
isShader(shader: WebGLShader | null): GLboolean;
25958
25988
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
25959
25989
isTexture(texture: WebGLTexture | null): GLboolean;
25990
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
25960
25991
lineWidth(width: GLfloat): void;
25961
25992
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
25962
25993
linkProgram(program: WebGLProgram): void;
0 commit comments