mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Make CSSKeyframeRule.parentRule actually point to parent rule
This commit is contained in:
parent
7f2c833a39
commit
19fa630fa7
Notes:
sideshowbarker
2024-07-17 11:29:41 +09:00
Author: https://github.com/awesomekling
Commit: 19fa630fa7
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/168
4 changed files with 14 additions and 7 deletions
|
@ -37,13 +37,7 @@ public:
|
|||
void set_name(String const& name) { m_name = name; }
|
||||
|
||||
private:
|
||||
CSSKeyframesRule(JS::Realm& realm, FlyString name, JS::NonnullGCPtr<CSSRuleList> keyframes)
|
||||
: CSSRule(realm)
|
||||
, m_name(move(name))
|
||||
, m_rules(move(keyframes))
|
||||
{
|
||||
}
|
||||
|
||||
CSSKeyframesRule(JS::Realm&, FlyString name, JS::NonnullGCPtr<CSSRuleList> keyframes);
|
||||
virtual void visit_edges(Visitor&) override;
|
||||
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue