mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 16:40:03 +00:00
CSSStyleDeclaration is a base class that's used by various collections of style properties or descriptors. This commit moves all style-property-related code into CSSStyleProperties, where it belongs. As noted in the previous commit, we also apply the CSSStyleProperties prototype now.
4 lines
248 B
Text
4 lines
248 B
Text
spanRule: [object CSSStyleRule] ~ span { color: purple; }
|
|
spanRule.style: [object CSSStyleProperties] ~ span { color: purple; }
|
|
spanRule.style.parentRule: [object CSSStyleRule] ~ span { color: purple; }
|
|
spanRule.style.parentRule === spanRule: true
|