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