@@ -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 {
@@ -18266,8 +18268,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
18266
18268
readonly requestStart: DOMHighResTimeStamp;
18267
18269
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
18268
18270
readonly responseEnd: DOMHighResTimeStamp;
18269
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270
- readonly responseStart: DOMHighResTimeStamp;
18271
18271
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
18272
18272
readonly responseStatus: number;
18273
18273
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20377,13 @@ declare var SVGElement: {
20377
20377
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
20378
20378
*/
20379
20379
interface SVGEllipseElement extends SVGGeometryElement {
20380
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
20380
20381
readonly cx: SVGAnimatedLength;
20382
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
20381
20383
readonly cy: SVGAnimatedLength;
20384
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
20382
20385
readonly rx: SVGAnimatedLength;
20386
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
20383
20387
readonly ry: SVGAnimatedLength;
20384
20388
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20385
20389
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20970,6 +20974,7 @@ declare var SVGFESpotLightElement: {
20970
20974
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
20971
20975
*/
20972
20976
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20977
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
20973
20978
readonly in1: SVGAnimatedString;
20974
20979
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20975
20980
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments