mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +00:00
LibWeb/SVG: Implement the SVGAElement.target
attribute
This commit is contained in:
parent
910fd426a2
commit
d86f0a1b29
Notes:
github-actions[bot]
2025-07-12 09:06:57 +00:00
Author: https://github.com/tcl3
Commit: d86f0a1b29
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5412
Reviewed-by: https://github.com/gmta ✅
Reviewed-by: https://github.com/shannonbooth
4 changed files with 22 additions and 9 deletions
|
@ -21,6 +21,8 @@ class SVGAElement final
|
|||
public:
|
||||
virtual ~SVGAElement() override;
|
||||
|
||||
GC::Ref<SVGAnimatedString> target();
|
||||
|
||||
GC::Ref<DOM::DOMTokenList> rel_list();
|
||||
|
||||
virtual GC::Ptr<Layout::Node> create_layout_node(GC::Ref<CSS::ComputedProperties>) override;
|
||||
|
@ -38,6 +40,8 @@ private:
|
|||
virtual i32 default_tab_index_value() const override;
|
||||
|
||||
GC::Ptr<DOM::DOMTokenList> m_rel_list;
|
||||
|
||||
GC::Ptr<SVGAnimatedString> m_target;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue