1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:57:46 +00:00

LibWeb: Move QualifiedName into the Web::DOM namespace

This commit is contained in:
Andreas Kling 2022-02-18 21:00:52 +01:00
parent cdd1a9f128
commit 1b6ed558bb
174 changed files with 174 additions and 174 deletions

View file

@ -37,7 +37,7 @@
namespace Web::DOM {
Element::Element(Document& document, QualifiedName qualified_name)
Element::Element(Document& document, DOM::QualifiedName qualified_name)
: ParentNode(document, NodeType::ELEMENT_NODE)
, m_qualified_name(move(qualified_name))
, m_attributes(NamedNodeMap::create(*this))

View file

@ -32,7 +32,7 @@ class Element
public:
using WrapperType = Bindings::ElementWrapper;
Element(Document&, QualifiedName);
Element(Document&, DOM::QualifiedName);
virtual ~Element() override;
const String& qualified_name() const { return m_qualified_name.as_string(); }

View file

@ -8,7 +8,7 @@
#include <AK/FlyString.h>
namespace Web {
namespace Web::DOM {
class QualifiedName {
public: