Files

12 lines
155 B
JavaScript
Raw Permalink Normal View History

2026-04-29 15:18:30 +08:00
// mock class
export class DOMHTMLVideoElement {
constructor(rect) {
this.rect = rect;
}
getBoundingClientRect() {
return this.rect;
}
}