@@ -2238,8 +2238,10 @@ interface VideoDecoderConfig {
2238
2238
description?: AllowSharedBufferSource;
2239
2239
displayAspectHeight?: number;
2240
2240
displayAspectWidth?: number;
2241
+ flip?: boolean;
2241
2242
hardwareAcceleration?: HardwareAcceleration;
2242
2243
optimizeForLatency?: boolean;
2244
+ rotation?: number;
2243
2245
}
2244
2246
2245
2247
interface VideoDecoderInit {
@@ -6655,10 +6657,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6655
6657
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6656
6658
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
6657
6659
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6660
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
6658
6661
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6662
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
6659
6663
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6660
6664
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
6661
6665
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6666
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
6662
6667
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6663
6668
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6664
6669
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
@@ -6743,15 +6748,21 @@ interface DOMMatrixReadOnly {
6743
6748
inverse(): DOMMatrix;
6744
6749
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6745
6750
multiply(other?: DOMMatrixInit): DOMMatrix;
6751
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
6746
6752
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6753
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
6747
6754
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6755
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
6748
6756
rotateFromVector(x?: number, y?: number): DOMMatrix;
6749
6757
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
6750
6758
scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6759
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
6751
6760
scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6752
6761
/** @deprecated */
6753
6762
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6763
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
6754
6764
skewX(sx?: number): DOMMatrix;
6765
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
6755
6766
skewY(sy?: number): DOMMatrix;
6756
6767
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
6757
6768
toFloat32Array(): Float32Array;
@@ -18266,8 +18277,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
18266
18277
readonly requestStart: DOMHighResTimeStamp;
18267
18278
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
18268
18279
readonly responseEnd: DOMHighResTimeStamp;
18269
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270
- readonly responseStart: DOMHighResTimeStamp;
18271
18280
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
18272
18281
readonly responseStatus: number;
18273
18282
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20386,13 @@ declare var SVGElement: {
20377
20386
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
20378
20387
*/
20379
20388
interface SVGEllipseElement extends SVGGeometryElement {
20389
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
20380
20390
readonly cx: SVGAnimatedLength;
20391
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
20381
20392
readonly cy: SVGAnimatedLength;
20393
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
20382
20394
readonly rx: SVGAnimatedLength;
20395
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
20383
20396
readonly ry: SVGAnimatedLength;
20384
20397
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20385
20398
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20541,17 +20554,29 @@ declare var SVGFECompositeElement: {
20541
20554
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)
20542
20555
*/
20543
20556
interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20557
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias) */
20544
20558
readonly bias: SVGAnimatedNumber;
20559
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor) */
20545
20560
readonly divisor: SVGAnimatedNumber;
20561
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode) */
20546
20562
readonly edgeMode: SVGAnimatedEnumeration;
20563
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1) */
20547
20564
readonly in1: SVGAnimatedString;
20565
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix) */
20548
20566
readonly kernelMatrix: SVGAnimatedNumberList;
20567
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX) */
20549
20568
readonly kernelUnitLengthX: SVGAnimatedNumber;
20569
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY) */
20550
20570
readonly kernelUnitLengthY: SVGAnimatedNumber;
20571
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX) */
20551
20572
readonly orderX: SVGAnimatedInteger;
20573
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY) */
20552
20574
readonly orderY: SVGAnimatedInteger;
20575
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha) */
20553
20576
readonly preserveAlpha: SVGAnimatedBoolean;
20577
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX) */
20554
20578
readonly targetX: SVGAnimatedInteger;
20579
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY) */
20555
20580
readonly targetY: SVGAnimatedInteger;
20556
20581
readonly SVG_EDGEMODE_UNKNOWN: 0;
20557
20582
readonly SVG_EDGEMODE_DUPLICATE: 1;
@@ -20605,10 +20630,15 @@ declare var SVGFEDiffuseLightingElement: {
20605
20630
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)
20606
20631
*/
20607
20632
interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20633
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1) */
20608
20634
readonly in1: SVGAnimatedString;
20635
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2) */
20609
20636
readonly in2: SVGAnimatedString;
20637
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale) */
20610
20638
readonly scale: SVGAnimatedNumber;
20639
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector) */
20611
20640
readonly xChannelSelector: SVGAnimatedEnumeration;
20641
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector) */
20612
20642
readonly yChannelSelector: SVGAnimatedEnumeration;
20613
20643
readonly SVG_CHANNEL_UNKNOWN: 0;
20614
20644
readonly SVG_CHANNEL_R: 1;
@@ -20872,8 +20902,11 @@ declare var SVGFEMorphologyElement: {
20872
20902
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)
20873
20903
*/
20874
20904
interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20905
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx) */
20875
20906
readonly dx: SVGAnimatedNumber;
20907
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy) */
20876
20908
readonly dy: SVGAnimatedNumber;
20909
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1) */
20877
20910
readonly in1: SVGAnimatedString;
20878
20911
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20879
20912
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20942,10 +20975,15 @@ declare var SVGFESpecularLightingElement: {
20942
20975
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)
20943
20976
*/
20944
20977
interface SVGFESpotLightElement extends SVGElement {
20978
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle) */
20945
20979
readonly limitingConeAngle: SVGAnimatedNumber;
20980
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX) */
20946
20981
readonly pointsAtX: SVGAnimatedNumber;
20982
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY) */
20947
20983
readonly pointsAtY: SVGAnimatedNumber;
20984
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ) */
20948
20985
readonly pointsAtZ: SVGAnimatedNumber;
20986
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent) */
20949
20987
readonly specularExponent: SVGAnimatedNumber;
20950
20988
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
20951
20989
readonly x: SVGAnimatedNumber;
@@ -20970,6 +21008,7 @@ declare var SVGFESpotLightElement: {
20970
21008
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
20971
21009
*/
20972
21010
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
21011
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
20973
21012
readonly in1: SVGAnimatedString;
20974
21013
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20975
21014
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21047,10 +21086,15 @@ declare var SVGFilterElement: {
21047
21086
};
21048
21087
21049
21088
interface SVGFilterPrimitiveStandardAttributes {
21089
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */
21050
21090
readonly height: SVGAnimatedLength;
21091
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */
21051
21092
readonly result: SVGAnimatedString;
21093
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */
21052
21094
readonly width: SVGAnimatedLength;
21095
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */
21053
21096
readonly x: SVGAnimatedLength;
21097
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */
21054
21098
readonly y: SVGAnimatedLength;
21055
21099
}
21056
21100
@@ -22139,9 +22183,13 @@ declare var SVGUnitTypes: {
22139
22183
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
22140
22184
*/
22141
22185
interface SVGUseElement extends SVGGraphicsElement, SVGURIReference {
22186
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height) */
22142
22187
readonly height: SVGAnimatedLength;
22188
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width) */
22143
22189
readonly width: SVGAnimatedLength;
22190
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x) */
22144
22191
readonly x: SVGAnimatedLength;
22192
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y) */
22145
22193
readonly y: SVGAnimatedLength;
22146
22194
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
22147
22195
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments