summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-03-04 18:49:30 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-04 23:03:29 +0100
commita2e6abe1593423140a2806f6c9dff77a762eac58 (patch)
tree1e990dd0cb232c72beb4a314498a095089412e79 /Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h
parent55c247d04412bbf0ae44a48ab17705af1b145e0d (diff)
downloadserenity-a2e6abe1593423140a2806f6c9dff77a762eac58.zip
LibWeb: Add HTMLMediaElement.canPlayType()
For the time being, the answer is no, or rather: "" :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h
index d8cefc19c6..ed5bb41b5b 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.h
@@ -16,6 +16,8 @@ public:
HTMLMediaElement(DOM::Document&, DOM::QualifiedName);
virtual ~HTMLMediaElement() override;
+
+ Bindings::CanPlayTypeResult can_play_type(String const& type) const;
};
}