LibWeb: Partially implement MediaSource.isTypeSupported()

This commit is contained in:
Jelle Raaijmakers 2024-11-26 13:46:29 +01:00 committed by Andreas Kling
commit 24069d55bf
Notes: github-actions[bot] 2024-11-26 22:51:58 +00:00
5 changed files with 200 additions and 1 deletions

View file

@ -38,5 +38,5 @@ interface MediaSource : EventTarget {
[FIXME] undefined endOfStream(optional EndOfStreamError error);
[FIXME] undefined setLiveSeekableRange(double start, double end);
[FIXME] undefined clearLiveSeekableRange();
[FIXME] static boolean isTypeSupported(DOMString type);
static boolean isTypeSupported(DOMString type);
};