@@ -2238,8 +2238,10 @@ interface VideoDecoderConfig {
22382238 description?: AllowSharedBufferSource;
22392239 displayAspectHeight?: number;
22402240 displayAspectWidth?: number;
2241+ flip?: boolean;
22412242 hardwareAcceleration?: HardwareAcceleration;
22422243 optimizeForLatency?: boolean;
2244+ rotation?: number;
22432245}
22442246
22452247interface VideoDecoderInit {
@@ -6655,10 +6657,13 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66556657 multiplySelf(other?: DOMMatrixInit): DOMMatrix;
66566658 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
66576659 preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6660+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateAxisAngleSelf) */
66586661 rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6662+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateFromVectorSelf) */
66596663 rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
66606664 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
66616665 rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6666+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
66626667 scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
66636668 scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
66646669 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
@@ -6743,15 +6748,21 @@ interface DOMMatrixReadOnly {
67436748 inverse(): DOMMatrix;
67446749 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
67456750 multiply(other?: DOMMatrixInit): DOMMatrix;
6751+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
67466752 rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6753+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
67476754 rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6755+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
67486756 rotateFromVector(x?: number, y?: number): DOMMatrix;
67496757 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
67506758 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) */
67516760 scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
67526761 /** @deprecated */
67536762 scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6763+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
67546764 skewX(sx?: number): DOMMatrix;
6765+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
67556766 skewY(sy?: number): DOMMatrix;
67566767 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
67576768 toFloat32Array(): Float32Array;
@@ -18266,8 +18277,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
1826618277 readonly requestStart: DOMHighResTimeStamp;
1826718278 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
1826818279 readonly responseEnd: DOMHighResTimeStamp;
18269- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270- readonly responseStart: DOMHighResTimeStamp;
1827118280 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
1827218281 readonly responseStatus: number;
1827318282 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20386,13 @@ declare var SVGElement: {
2037720386 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
2037820387 */
2037920388interface SVGEllipseElement extends SVGGeometryElement {
20389+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
2038020390 readonly cx: SVGAnimatedLength;
20391+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
2038120392 readonly cy: SVGAnimatedLength;
20393+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
2038220394 readonly rx: SVGAnimatedLength;
20395+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
2038320396 readonly ry: SVGAnimatedLength;
2038420397 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2038520398 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20541,17 +20554,29 @@ declare var SVGFECompositeElement: {
2054120554 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement)
2054220555 */
2054320556interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20557+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/bias) */
2054420558 readonly bias: SVGAnimatedNumber;
20559+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/divisor) */
2054520560 readonly divisor: SVGAnimatedNumber;
20561+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/edgeMode) */
2054620562 readonly edgeMode: SVGAnimatedEnumeration;
20563+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/in1) */
2054720564 readonly in1: SVGAnimatedString;
20565+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelMatrix) */
2054820566 readonly kernelMatrix: SVGAnimatedNumberList;
20567+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthX) */
2054920568 readonly kernelUnitLengthX: SVGAnimatedNumber;
20569+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/kernelUnitLengthY) */
2055020570 readonly kernelUnitLengthY: SVGAnimatedNumber;
20571+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderX) */
2055120572 readonly orderX: SVGAnimatedInteger;
20573+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/orderY) */
2055220574 readonly orderY: SVGAnimatedInteger;
20575+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/preserveAlpha) */
2055320576 readonly preserveAlpha: SVGAnimatedBoolean;
20577+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetX) */
2055420578 readonly targetX: SVGAnimatedInteger;
20579+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEConvolveMatrixElement/targetY) */
2055520580 readonly targetY: SVGAnimatedInteger;
2055620581 readonly SVG_EDGEMODE_UNKNOWN: 0;
2055720582 readonly SVG_EDGEMODE_DUPLICATE: 1;
@@ -20605,10 +20630,15 @@ declare var SVGFEDiffuseLightingElement: {
2060520630 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement)
2060620631 */
2060720632interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20633+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in1) */
2060820634 readonly in1: SVGAnimatedString;
20635+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/in2) */
2060920636 readonly in2: SVGAnimatedString;
20637+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/scale) */
2061020638 readonly scale: SVGAnimatedNumber;
20639+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/xChannelSelector) */
2061120640 readonly xChannelSelector: SVGAnimatedEnumeration;
20641+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDisplacementMapElement/yChannelSelector) */
2061220642 readonly yChannelSelector: SVGAnimatedEnumeration;
2061320643 readonly SVG_CHANNEL_UNKNOWN: 0;
2061420644 readonly SVG_CHANNEL_R: 1;
@@ -20872,8 +20902,11 @@ declare var SVGFEMorphologyElement: {
2087220902 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement)
2087320903 */
2087420904interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20905+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dx) */
2087520906 readonly dx: SVGAnimatedNumber;
20907+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/dy) */
2087620908 readonly dy: SVGAnimatedNumber;
20909+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEOffsetElement/in1) */
2087720910 readonly in1: SVGAnimatedString;
2087820911 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEOffsetElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2087920912 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20942,10 +20975,15 @@ declare var SVGFESpecularLightingElement: {
2094220975 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement)
2094320976 */
2094420977interface SVGFESpotLightElement extends SVGElement {
20978+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/limitingConeAngle) */
2094520979 readonly limitingConeAngle: SVGAnimatedNumber;
20980+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtX) */
2094620981 readonly pointsAtX: SVGAnimatedNumber;
20982+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtY) */
2094720983 readonly pointsAtY: SVGAnimatedNumber;
20984+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/pointsAtZ) */
2094820985 readonly pointsAtZ: SVGAnimatedNumber;
20986+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/specularExponent) */
2094920987 readonly specularExponent: SVGAnimatedNumber;
2095020988 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpotLightElement/x) */
2095120989 readonly x: SVGAnimatedNumber;
@@ -20970,6 +21008,7 @@ declare var SVGFESpotLightElement: {
2097021008 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
2097121009 */
2097221010interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
21011+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
2097321012 readonly in1: SVGAnimatedString;
2097421013 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2097521014 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21047,10 +21086,15 @@ declare var SVGFilterElement: {
2104721086};
2104821087
2104921088interface SVGFilterPrimitiveStandardAttributes {
21089+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/height) */
2105021090 readonly height: SVGAnimatedLength;
21091+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/result) */
2105121092 readonly result: SVGAnimatedString;
21093+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/width) */
2105221094 readonly width: SVGAnimatedLength;
21095+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/x) */
2105321096 readonly x: SVGAnimatedLength;
21097+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEBlendElement/y) */
2105421098 readonly y: SVGAnimatedLength;
2105521099}
2105621100
@@ -22139,9 +22183,13 @@ declare var SVGUnitTypes: {
2213922183 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement)
2214022184 */
2214122185interface SVGUseElement extends SVGGraphicsElement, SVGURIReference {
22186+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/height) */
2214222187 readonly height: SVGAnimatedLength;
22188+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/width) */
2214322189 readonly width: SVGAnimatedLength;
22190+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/x) */
2214422191 readonly x: SVGAnimatedLength;
22192+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGUseElement/y) */
2214522193 readonly y: SVGAnimatedLength;
2214622194 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGUseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2214722195 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments