@@ -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 {
@@ -18266,8 +18268,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
1826618268 readonly requestStart: DOMHighResTimeStamp;
1826718269 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
1826818270 readonly responseEnd: DOMHighResTimeStamp;
18269- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270- readonly responseStart: DOMHighResTimeStamp;
1827118271 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
1827218272 readonly responseStatus: number;
1827318273 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20377,13 @@ declare var SVGElement: {
2037720377 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
2037820378 */
2037920379interface SVGEllipseElement extends SVGGeometryElement {
20380+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
2038020381 readonly cx: SVGAnimatedLength;
20382+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
2038120383 readonly cy: SVGAnimatedLength;
20384+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
2038220385 readonly rx: SVGAnimatedLength;
20386+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
2038320387 readonly ry: SVGAnimatedLength;
2038420388 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2038520389 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20970,6 +20974,7 @@ declare var SVGFESpotLightElement: {
2097020974 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
2097120975 */
2097220976interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20977+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
2097320978 readonly in1: SVGAnimatedString;
2097420979 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2097520980 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments