@@ -4875,8 +4875,6 @@ interface CSSStyleDeclaration {
48754875 pointerEvents: string;
48764876 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
48774877 position: string;
4878- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position-area) */
4879- positionArea: string;
48804878 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
48814879 printColorAdjust: string;
48824880 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
@@ -4997,6 +4995,9 @@ interface CSSStyleDeclaration {
49974995 textAlignLast: string;
49984996 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
49994997 textAnchor: string;
4998+ textBox: string;
4999+ textBoxEdge: string;
5000+ textBoxTrim: string;
50005001 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
50015002 textCombineUpright: string;
50025003 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
@@ -6630,17 +6631,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66306631 m43: number;
66316632 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
66326633 m44: number;
6634+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
66336635 invertSelf(): DOMMatrix;
66346636 multiplySelf(other?: DOMMatrixInit): DOMMatrix;
66356637 preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
66366638 rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
66376639 rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6640+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
66386641 rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
66396642 scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
66406643 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) */
66416645 setMatrixValue(transformList: string): DOMMatrix;
6646+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
66426647 skewXSelf(sx?: number): DOMMatrix;
6648+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
66436649 skewYSelf(sy?: number): DOMMatrix;
6650+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
66446651 translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
66456652}
66466653
@@ -6709,6 +6716,7 @@ interface DOMMatrixReadOnly {
67096716 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
67106717 flipX(): DOMMatrix;
67116718 flipY(): DOMMatrix;
6719+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
67126720 inverse(): DOMMatrix;
67136721 multiply(other?: DOMMatrixInit): DOMMatrix;
67146722 rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -6723,6 +6731,7 @@ interface DOMMatrixReadOnly {
67236731 skewY(sy?: number): DOMMatrix;
67246732 toFloat32Array(): Float32Array;
67256733 toFloat64Array(): Float64Array;
6734+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
67266735 toJSON(): any;
67276736 transformPoint(point?: DOMPointInit): DOMPoint;
67286737 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -10682,6 +10691,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
1068210691 title: string;
1068310692 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
1068410693 translate: boolean;
10694+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
1068510695 writingSuggestions: string;
1068610696 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
1068710697 attachInternals(): ElementInternals;
@@ -19931,7 +19941,9 @@ declare var SVGAnimateTransformElement: {
1993119941 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
1993219942 */
1993319943interface SVGAnimatedAngle {
19944+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
1993419945 readonly animVal: SVGAngle;
19946+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
1993519947 readonly baseVal: SVGAngle;
1993619948}
1993719949
@@ -19946,7 +19958,9 @@ declare var SVGAnimatedAngle: {
1994619958 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
1994719959 */
1994819960interface SVGAnimatedBoolean {
19961+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
1994919962 readonly animVal: boolean;
19963+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
1995019964 baseVal: boolean;
1995119965}
1995219966
@@ -20010,7 +20024,9 @@ declare var SVGAnimatedLength: {
2001020024 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
2001120025 */
2001220026interface SVGAnimatedLengthList {
20027+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
2001320028 readonly animVal: SVGLengthList;
20029+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
2001420030 readonly baseVal: SVGLengthList;
2001520031}
2001620032
@@ -20025,7 +20041,9 @@ declare var SVGAnimatedLengthList: {
2002520041 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
2002620042 */
2002720043interface SVGAnimatedNumber {
20044+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
2002820045 readonly animVal: number;
20046+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
2002920047 baseVal: number;
2003020048}
2003120049
@@ -20040,7 +20058,9 @@ declare var SVGAnimatedNumber: {
2004020058 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
2004120059 */
2004220060interface SVGAnimatedNumberList {
20061+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
2004320062 readonly animVal: SVGNumberList;
20063+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
2004420064 readonly baseVal: SVGNumberList;
2004520065}
2004620066
@@ -20075,7 +20095,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
2007520095 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
2007620096 */
2007720097interface SVGAnimatedRect {
20098+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
2007820099 readonly animVal: DOMRectReadOnly;
20100+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
2007920101 readonly baseVal: DOMRect;
2008020102}
2008120103
@@ -20107,7 +20129,9 @@ declare var SVGAnimatedString: {
2010720129 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
2010820130 */
2010920131interface SVGAnimatedTransformList {
20132+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
2011020133 readonly animVal: SVGTransformList;
20134+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
2011120135 readonly baseVal: SVGTransformList;
2011220136}
2011320137
@@ -20120,9 +20144,13 @@ declare var SVGAnimatedTransformList: {
2012020144interface SVGAnimationElement extends SVGElement, SVGTests {
2012120145 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
2012220146 readonly targetElement: SVGElement | null;
20147+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
2012320148 beginElement(): void;
20149+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
2012420150 beginElementAt(offset: number): void;
20151+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
2012520152 endElement(): void;
20153+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
2012620154 endElementAt(offset: number): void;
2012720155 getCurrentTime(): number;
2012820156 getSimpleDuration(): number;
@@ -21721,7 +21749,9 @@ declare var SVGTSpanElement: {
2172121749};
2172221750
2172321751interface SVGTests {
21752+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
2172421753 readonly requiredExtensions: SVGStringList;
21754+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
2172521755 readonly systemLanguage: SVGStringList;
2172621756}
2172721757
@@ -25957,6 +25987,7 @@ interface WebGLRenderingContextBase {
2595725987 isShader(shader: WebGLShader | null): GLboolean;
2595825988 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
2595925989 isTexture(texture: WebGLTexture | null): GLboolean;
25990+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
2596025991 lineWidth(width: GLfloat): void;
2596125992 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
2596225993 linkProgram(program: WebGLProgram): void;
0 commit comments