1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00: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
3 changed files with 8 additions and 0 deletions

View file

@ -19,6 +19,7 @@ public:
Bindings::CanPlayTypeResult can_play_type(DeprecatedString const& type) const;
void load() const;
void pause() const;
protected:
HTMLMediaElement(DOM::Document&, DOM::QualifiedName);