diff options
Diffstat (limited to 'Libraries/LibHTML/DOM/Element.h')
-rw-r--r-- | Libraries/LibHTML/DOM/Element.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibHTML/DOM/Element.h b/Libraries/LibHTML/DOM/Element.h index a45f09ba4b..d6641e5496 100644 --- a/Libraries/LibHTML/DOM/Element.h +++ b/Libraries/LibHTML/DOM/Element.h @@ -43,6 +43,7 @@ public: bool has_class(const StringView&) const; virtual void apply_presentational_hints(StyleProperties&) const {} + virtual void parse_attribute(const String& name, const String& value); private: RefPtr<LayoutNode> create_layout_node(const StyleResolver&, const StyleProperties* parent_properties) const override; |