mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
To make this straightforward, CSSKeyframesRule now uses a CSSRuleList for internal storage.
6 lines
397 B
Plaintext
6 lines
397 B
Plaintext
fooRule: [object CSSKeyframesRule] ~ @keyframes "foo" { 0% { color: rgb(0, 0, 0); } 100% { color: rgb(255, 255, 255); } }
|
|
fooRule.cssRules: [object CSSRuleList]
|
|
fooRule.cssRules[0]: [object CSSKeyframeRule] ~ 0% { color: rgb(0, 0, 0); }
|
|
fooRule.cssRules[0].style.parentRule: [object CSSKeyframeRule] ~ 0% { color: rgb(0, 0, 0); }
|
|
fooRule.cssRules[0].style.parentRule === fooRule.cssRules[0]: true
|