Skip to content

Commit 8aa80d1

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 7e248ca commit 8aa80d1

9 files changed

+144
-31
lines changed

baselines/dom.generated.d.ts

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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) */
@@ -7871,7 +7880,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
78717880
*
78727881
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
78737882
*/
7874-
importNode<T extends Node>(node: T, deep?: boolean): T;
7883+
importNode<T extends Node>(node: T, subtree?: boolean): T;
78757884
/**
78767885
* 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.
78777886
* @param url Specifies a MIME type for the document.
@@ -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;
@@ -17033,7 +17043,7 @@ interface Node extends EventTarget {
1703317043
*
1703417044
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
1703517045
*/
17036-
cloneNode(deep?: boolean): Node;
17046+
cloneNode(subtree?: boolean): Node;
1703717047
/**
1703817048
* Returns a bitmask indicating the position of other relative to node.
1703917049
*
@@ -19931,7 +19941,9 @@ declare var SVGAnimateTransformElement: {
1993119941
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
1993219942
*/
1993319943
interface 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
*/
1994819960
interface 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
*/
2001220026
interface 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
*/
2002720043
interface 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
*/
2004220060
interface 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
*/
2007720097
interface 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
*/
2010920131
interface 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: {
2012020144
interface 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

2172321751
interface 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;

baselines/serviceworker.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1860,16 +1860,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
18601860
m43: number;
18611861
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
18621862
m44: number;
1863+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
18631864
invertSelf(): DOMMatrix;
18641865
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
18651866
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
18661867
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
18671868
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
1869+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
18681870
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
18691871
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
18701872
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1873+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
18711874
skewXSelf(sx?: number): DOMMatrix;
1875+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
18721876
skewYSelf(sy?: number): DOMMatrix;
1877+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
18731878
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
18741879
}
18751880

@@ -1932,6 +1937,7 @@ interface DOMMatrixReadOnly {
19321937
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
19331938
flipX(): DOMMatrix;
19341939
flipY(): DOMMatrix;
1940+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
19351941
inverse(): DOMMatrix;
19361942
multiply(other?: DOMMatrixInit): DOMMatrix;
19371943
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -1946,6 +1952,7 @@ interface DOMMatrixReadOnly {
19461952
skewY(sy?: number): DOMMatrix;
19471953
toFloat32Array(): Float32Array;
19481954
toFloat64Array(): Float64Array;
1955+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
19491956
toJSON(): any;
19501957
transformPoint(point?: DOMPointInit): DOMPoint;
19511958
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -7277,6 +7284,7 @@ interface WebGLRenderingContextBase {
72777284
isShader(shader: WebGLShader | null): GLboolean;
72787285
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
72797286
isTexture(texture: WebGLTexture | null): GLboolean;
7287+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
72807288
lineWidth(width: GLfloat): void;
72817289
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
72827290
linkProgram(program: WebGLProgram): void;

baselines/sharedworker.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,16 +1787,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
17871787
m43: number;
17881788
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
17891789
m44: number;
1790+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
17901791
invertSelf(): DOMMatrix;
17911792
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
17921793
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
17931794
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
17941795
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
1796+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
17951797
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
17961798
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
17971799
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1800+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
17981801
skewXSelf(sx?: number): DOMMatrix;
1802+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
17991803
skewYSelf(sy?: number): DOMMatrix;
1804+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
18001805
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
18011806
}
18021807

@@ -1859,6 +1864,7 @@ interface DOMMatrixReadOnly {
18591864
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
18601865
flipX(): DOMMatrix;
18611866
flipY(): DOMMatrix;
1867+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
18621868
inverse(): DOMMatrix;
18631869
multiply(other?: DOMMatrixInit): DOMMatrix;
18641870
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -1873,6 +1879,7 @@ interface DOMMatrixReadOnly {
18731879
skewY(sy?: number): DOMMatrix;
18741880
toFloat32Array(): Float32Array;
18751881
toFloat64Array(): Float64Array;
1882+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
18761883
toJSON(): any;
18771884
transformPoint(point?: DOMPointInit): DOMPoint;
18781885
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -7088,6 +7095,7 @@ interface WebGLRenderingContextBase {
70887095
isShader(shader: WebGLShader | null): GLboolean;
70897096
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
70907097
isTexture(texture: WebGLTexture | null): GLboolean;
7098+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
70917099
lineWidth(width: GLfloat): void;
70927100
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
70937101
linkProgram(program: WebGLProgram): void;

0 commit comments

Comments
 (0)