1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibWeb: Stub HTMLMediaElement.load

This commit is contained in:
Luke Wilde 2022-10-28 15:38:35 +01:00 committed by Linus Groh
parent 62e3117dfd
commit 377eb09492
3 changed files with 8 additions and 0 deletions

View file

@ -18,4 +18,5 @@ interface HTMLMediaElement : HTMLElement {
[Reflect] attribute boolean controls;
CanPlayTypeResult canPlayType(DOMString type);
undefined load();
};