mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-06 21:45:29 +00:00
LibWeb: Add namespace to Element
This commit is contained in:
@@ -46,9 +46,9 @@
|
||||
|
||||
namespace Web::DOM {
|
||||
|
||||
Element::Element(Document& document, const FlyString& tag_name)
|
||||
Element::Element(Document& document, const QualifiedName& qualified_name)
|
||||
: ParentNode(document, NodeType::ELEMENT_NODE)
|
||||
, m_tag_name(tag_name)
|
||||
, m_qualified_name(qualified_name)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user