summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLInputElement.h
diff options
context:
space:
mode:
authorLuke <luke.wilde@live.co.uk>2020-07-28 02:54:19 +0100
committerAndreas Kling <kling@serenityos.org>2020-08-09 21:14:51 +0200
commita86ce7eaca48eaa3ac4827c0cd5c88ee4db2daa6 (patch)
treeffc780fd059b23610ac84ee65ff0afbdf11821da /Libraries/LibWeb/HTML/HTMLInputElement.h
parent700f5cfc90c6caa2151e2851c026af9d727c5c03 (diff)
downloadserenity-a86ce7eaca48eaa3ac4827c0cd5c88ee4db2daa6.zip
LibWeb: Make all existing HTML elements "final"
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLInputElement.h')
-rw-r--r--Libraries/LibWeb/HTML/HTMLInputElement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLInputElement.h b/Libraries/LibWeb/HTML/HTMLInputElement.h
index d02db5fd7a..0bec44e8de 100644
--- a/Libraries/LibWeb/HTML/HTMLInputElement.h
+++ b/Libraries/LibWeb/HTML/HTMLInputElement.h
@@ -30,7 +30,7 @@
namespace Web::HTML {
-class HTMLInputElement : public HTMLElement {
+class HTMLInputElement final : public HTMLElement {
public:
using WrapperType = Bindings::HTMLInputElementWrapper;