1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +00:00

LibWeb: Expose SVGEllipseElement attributes to JS

This commit is contained in:
Sam Atkins 2022-03-22 16:57:00 +00:00 committed by Andreas Kling
parent 1a3d6c68ef
commit ccee8953d0
3 changed files with 51 additions and 4 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <LibWeb/SVG/SVGAnimatedLength.h>
#include <LibWeb/SVG/SVGGeometryElement.h>
namespace Web::SVG {
@ -21,6 +22,11 @@ public:
virtual Gfx::Path& get_path() override;
NonnullRefPtr<SVGAnimatedLength> cx() const;
NonnullRefPtr<SVGAnimatedLength> cy() const;
NonnullRefPtr<SVGAnimatedLength> rx() const;
NonnullRefPtr<SVGAnimatedLength> ry() const;
private:
Optional<Gfx::Path> m_path;