diff options
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLLIElement.cpp')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLLIElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLLIElement.cpp b/Libraries/LibWeb/HTML/HTMLLIElement.cpp index 1623bf57b3..fbdb4d0444 100644 --- a/Libraries/LibWeb/HTML/HTMLLIElement.cpp +++ b/Libraries/LibWeb/HTML/HTMLLIElement.cpp @@ -28,8 +28,8 @@ namespace Web::HTML { -HTMLLIElement::HTMLLIElement(DOM::Document& document, const FlyString& tag_name) - : HTMLElement(document, tag_name) +HTMLLIElement::HTMLLIElement(DOM::Document& document, const QualifiedName& qualified_name) + : HTMLElement(document, qualified_name) { } |