mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
LibWeb: Expose SVGCircleElement attributes to JS
This commit is contained in:
parent
b51ea3a67c
commit
1a3d6c68ef
Notes:
sideshowbarker
2024-07-17 16:52:54 +09:00
Author: https://github.com/AtkinsSJ
Commit: 1a3d6c68ef
Pull-request: https://github.com/SerenityOS/serenity/pull/13199
3 changed files with 39 additions and 3 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/SVG/SVGAnimatedLength.h>
|
||||
#include <LibWeb/SVG/SVGGeometryElement.h>
|
||||
|
||||
namespace Web::SVG {
|
||||
|
@ -21,6 +22,10 @@ public:
|
|||
|
||||
virtual Gfx::Path& get_path() override;
|
||||
|
||||
NonnullRefPtr<SVGAnimatedLength> cx() const;
|
||||
NonnullRefPtr<SVGAnimatedLength> cy() const;
|
||||
NonnullRefPtr<SVGAnimatedLength> r() const;
|
||||
|
||||
private:
|
||||
Optional<Gfx::Path> m_path;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue