mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:37:34 +00:00
LibWeb: Move QualifiedName into the Web::DOM namespace
This commit is contained in:
parent
cdd1a9f128
commit
1b6ed558bb
174 changed files with 174 additions and 174 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGCircleElement::SVGCircleElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGCircleElement::SVGCircleElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGCircleElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGCircleElementWrapper;
|
||||
|
||||
SVGCircleElement(DOM::Document&, QualifiedName);
|
||||
SVGCircleElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGCircleElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGElement::SVGElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGElement::SVGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: Element(document, move(qualified_name))
|
||||
, m_dataset(HTML::DOMStringMap::create(*this))
|
||||
{
|
||||
|
|
|
@ -20,7 +20,7 @@ public:
|
|||
NonnullRefPtr<HTML::DOMStringMap> dataset() const { return m_dataset; }
|
||||
|
||||
protected:
|
||||
SVGElement(DOM::Document&, QualifiedName);
|
||||
SVGElement(DOM::Document&, DOM::QualifiedName);
|
||||
|
||||
NonnullRefPtr<HTML::DOMStringMap> m_dataset;
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGEllipseElement::SVGEllipseElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGEllipseElement::SVGEllipseElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGEllipseElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGEllipseElementWrapper;
|
||||
|
||||
SVGEllipseElement(DOM::Document&, QualifiedName);
|
||||
SVGEllipseElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGEllipseElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGGElement::SVGGElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGGElement::SVGGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGraphicsElement(document, move(qualified_name))
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGGElement final : public SVGGraphicsElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGPathElementWrapper;
|
||||
|
||||
SVGGElement(DOM::Document&, QualifiedName);
|
||||
SVGGElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGGElement() override = default;
|
||||
|
||||
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGGeometryElement::SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGGeometryElement::SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGraphicsElement(document, move(qualified_name))
|
||||
{
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ public:
|
|||
virtual Gfx::Path& get_path() = 0;
|
||||
|
||||
protected:
|
||||
SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name);
|
||||
SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name);
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGGraphicsElement::SVGGraphicsElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGGraphicsElement::SVGGraphicsElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGElement(document, move(qualified_name))
|
||||
{
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ class SVGGraphicsElement : public SVGElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGGraphicsElementWrapper;
|
||||
|
||||
SVGGraphicsElement(DOM::Document&, QualifiedName);
|
||||
SVGGraphicsElement(DOM::Document&, DOM::QualifiedName);
|
||||
|
||||
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGLineElement::SVGLineElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGLineElement::SVGLineElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGLineElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGLineElementWrapper;
|
||||
|
||||
SVGLineElement(DOM::Document&, QualifiedName);
|
||||
SVGLineElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGLineElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -83,7 +83,7 @@ namespace Web::SVG {
|
|||
}
|
||||
}
|
||||
|
||||
SVGPathElement::SVGPathElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGPathElement::SVGPathElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, move(qualified_name))
|
||||
{
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ class SVGPathElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGPathElementWrapper;
|
||||
|
||||
SVGPathElement(DOM::Document&, QualifiedName);
|
||||
SVGPathElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGPathElement() override = default;
|
||||
|
||||
virtual void parse_attribute(const FlyString& name, const String& value) override;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGPolygonElement::SVGPolygonElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGPolygonElement::SVGPolygonElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGPolygonElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGPolygonElementWrapper;
|
||||
|
||||
SVGPolygonElement(DOM::Document&, QualifiedName);
|
||||
SVGPolygonElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGPolygonElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGPolylineElement::SVGPolylineElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGPolylineElement::SVGPolylineElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ class SVGPolylineElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGPolylineElementWrapper;
|
||||
|
||||
SVGPolylineElement(DOM::Document&, QualifiedName);
|
||||
SVGPolylineElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGPolylineElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGRectElement::SVGRectElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGRectElement::SVGRectElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ class SVGRectElement final : public SVGGeometryElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGRectElementWrapper;
|
||||
|
||||
SVGRectElement(DOM::Document&, QualifiedName);
|
||||
SVGRectElement(DOM::Document&, DOM::QualifiedName);
|
||||
virtual ~SVGRectElement() override = default;
|
||||
|
||||
virtual void parse_attribute(FlyString const& name, String const& value) override;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
namespace Web::SVG {
|
||||
|
||||
SVGSVGElement::SVGSVGElement(DOM::Document& document, QualifiedName qualified_name)
|
||||
SVGSVGElement::SVGSVGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||||
: SVGGraphicsElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ class SVGSVGElement final : public SVGGraphicsElement {
|
|||
public:
|
||||
using WrapperType = Bindings::SVGSVGElementWrapper;
|
||||
|
||||
SVGSVGElement(DOM::Document&, QualifiedName);
|
||||
SVGSVGElement(DOM::Document&, DOM::QualifiedName);
|
||||
|
||||
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue