diff options
author | Linus Groh <mail@linusgroh.de> | 2022-03-04 18:49:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-04 23:03:29 +0100 |
commit | a2e6abe1593423140a2806f6c9dff77a762eac58 (patch) | |
tree | 1e990dd0cb232c72beb4a314498a095089412e79 /Userland/Libraries/LibWeb/Forward.h | |
parent | 55c247d04412bbf0ae44a48ab17705af1b145e0d (diff) | |
download | serenity-a2e6abe1593423140a2806f6c9dff77a762eac58.zip |
LibWeb: Add HTMLMediaElement.canPlayType()
For the time being, the answer is no, or rather: "" :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index ceba11476a..b6411825f6 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -525,6 +525,7 @@ class XMLHttpRequestConstructor; class XMLHttpRequestEventTargetWrapper; class XMLHttpRequestPrototype; class XMLHttpRequestWrapper; +enum class CanPlayTypeResult; enum class DOMParserSupportedType; enum class XMLHttpRequestResponseType; } |