diff options
Diffstat (limited to 'Libraries/LibWeb/DOM/HTMLInputElement.h')
-rw-r--r-- | Libraries/LibWeb/DOM/HTMLInputElement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/DOM/HTMLInputElement.h b/Libraries/LibWeb/DOM/HTMLInputElement.h index 2277b6a8c3..4a087391b0 100644 --- a/Libraries/LibWeb/DOM/HTMLInputElement.h +++ b/Libraries/LibWeb/DOM/HTMLInputElement.h @@ -35,7 +35,7 @@ public: HTMLInputElement(Document&, const FlyString& tag_name); virtual ~HTMLInputElement() override; - virtual RefPtr<LayoutNode> create_layout_node(const StyleProperties* parent_style) const override; + virtual RefPtr<LayoutNode> create_layout_node(const StyleProperties* parent_style) override; String type() const { return attribute(HTML::AttributeNames::type); } String value() const { return attribute(HTML::AttributeNames::value); } |