1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-12 02:30:30 +09:00

LibWeb: Stub HTMLMediaElement.pause

Required for rendering GIFs on Discord.
This commit is contained in:
Luke Wilde 2022-12-09 18:49:36 +00:00 committed by Linus Groh
parent 2c77364716
commit 1e9cc2e211
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00
3 changed files with 8 additions and 0 deletions

View file

@ -41,4 +41,10 @@ void HTMLMediaElement::load() const
dbgln("(STUBBED) HTMLMediaElement::load()");
}
// https://html.spec.whatwg.org/multipage/media.html#dom-media-pause
void HTMLMediaElement::pause() const
{
dbgln("(STUBBED) HTMLMediaElement::pause()");
}
}