feat: add DashVideo media element (html, react) with sandbox support (#940)

This commit is contained in:
Christian Pillsbury
2026-03-16 12:21:19 -07:00
committed by GitHub
parent 7a5ce94bca
commit 5bdbbec8a0
16 changed files with 468 additions and 9 deletions
@@ -0,0 +1,14 @@
import { DashVideo } from '../../media/dash-video';
import { safeDefine } from '../safe-define';
export class DashVideoElement extends DashVideo {
static readonly tagName = 'dash-video';
}
safeDefine(DashVideoElement);
declare global {
interface HTMLElementTagNameMap {
[DashVideoElement.tagName]: DashVideoElement;
}
}