mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
fix(site): surface native media properties on element reference pages (#1722)
This commit is contained in:
@@ -125,6 +125,11 @@ export class HTMLMediaElementHost<Target extends HTMLMediaTargetLike, Events ext
|
||||
this.dispatchEvent(new (event.constructor as typeof Event)(event.type, event));
|
||||
};
|
||||
|
||||
/**
|
||||
* Current stream type (`'on-demand'`, `'live'`, or `'unknown'`). Defaults to
|
||||
* `'unknown'`; detecting hosts update it automatically, and consumers can set
|
||||
* it to override detection.
|
||||
*/
|
||||
get streamType() {
|
||||
return getProp(this, 'streamType') ?? this.#streamType;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user