diff --git a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.cpp index a989f5c132..13fe18332c 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.cpp @@ -75,4 +75,44 @@ Gfx::Path& SVGEllipseElement::get_path() return m_path.value(); } +// https://www.w3.org/TR/SVG11/shapes.html#EllipseElementCXAttribute +NonnullRefPtr SVGEllipseElement::cx() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_center_x.value_or(0)); + auto anim_length = SVGLength::create(0, m_center_x.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + +// https://www.w3.org/TR/SVG11/shapes.html#EllipseElementCYAttribute +NonnullRefPtr SVGEllipseElement::cy() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_center_y.value_or(0)); + auto anim_length = SVGLength::create(0, m_center_y.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + +// https://www.w3.org/TR/SVG11/shapes.html#EllipseElementRXAttribute +NonnullRefPtr SVGEllipseElement::rx() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_radius_x.value_or(0)); + auto anim_length = SVGLength::create(0, m_radius_x.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + +// https://www.w3.org/TR/SVG11/shapes.html#EllipseElementRYAttribute +NonnullRefPtr SVGEllipseElement::ry() const +{ + // FIXME: Populate the unit type when it is parsed (0 here is "unknown"). + // FIXME: Create a proper animated value when animations are supported. + auto base_length = SVGLength::create(0, m_radius_y.value_or(0)); + auto anim_length = SVGLength::create(0, m_radius_y.value_or(0)); + return SVGAnimatedLength::create(move(base_length), move(anim_length)); +} + } diff --git a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h index dc415967fb..6975476a07 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h +++ b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.h @@ -6,6 +6,7 @@ #pragma once +#include #include namespace Web::SVG { @@ -21,6 +22,11 @@ public: virtual Gfx::Path& get_path() override; + NonnullRefPtr cx() const; + NonnullRefPtr cy() const; + NonnullRefPtr rx() const; + NonnullRefPtr ry() const; + private: Optional m_path; diff --git a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.idl b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.idl index 4fa0a60261..34015474b3 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.idl +++ b/Userland/Libraries/LibWeb/SVG/SVGEllipseElement.idl @@ -1,9 +1,10 @@ +#import #import [Exposed=Window] interface SVGEllipseElement : SVGGeometryElement { - // [SameObject] readonly attribute SVGAnimatedLength cx; - // [SameObject] readonly attribute SVGAnimatedLength cy; - // [SameObject] readonly attribute SVGAnimatedLength rx; - // [SameObject] readonly attribute SVGAnimatedLength ry; + [SameObject] readonly attribute SVGAnimatedLength cx; + [SameObject] readonly attribute SVGAnimatedLength cy; + [SameObject] readonly attribute SVGAnimatedLength rx; + [SameObject] readonly attribute SVGAnimatedLength ry; };