@@ -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) */
@@ -19931,7 +19932,9 @@ declare var SVGAnimateTransformElement: {
19931
19932
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
19932
19933
*/
19933
19934
interface SVGAnimatedAngle {
19935
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
19934
19936
readonly animVal: SVGAngle;
19937
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
19935
19938
readonly baseVal: SVGAngle;
19936
19939
}
19937
19940
@@ -19946,7 +19949,9 @@ declare var SVGAnimatedAngle: {
19946
19949
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
19947
19950
*/
19948
19951
interface SVGAnimatedBoolean {
19952
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
19949
19953
readonly animVal: boolean;
19954
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
19950
19955
baseVal: boolean;
19951
19956
}
19952
19957
@@ -20075,7 +20080,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
20075
20080
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
20076
20081
*/
20077
20082
interface SVGAnimatedRect {
20083
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
20078
20084
readonly animVal: DOMRectReadOnly;
20085
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
20079
20086
readonly baseVal: DOMRect;
20080
20087
}
20081
20088
@@ -20107,7 +20114,9 @@ declare var SVGAnimatedString: {
20107
20114
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
20108
20115
*/
20109
20116
interface SVGAnimatedTransformList {
20117
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
20110
20118
readonly animVal: SVGTransformList;
20119
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
20111
20120
readonly baseVal: SVGTransformList;
20112
20121
}
20113
20122
@@ -25957,6 +25966,7 @@ interface WebGLRenderingContextBase {
25957
25966
isShader(shader: WebGLShader | null): GLboolean;
25958
25967
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
25959
25968
isTexture(texture: WebGLTexture | null): GLboolean;
25969
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
25960
25970
lineWidth(width: GLfloat): void;
25961
25971
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
25962
25972
linkProgram(program: WebGLProgram): void;
0 commit comments