mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-08 01:27:31 +00:00
This readonly attribute returns the containing CSS rule, or null (in the case of element inline style).
5 lines
279 B
Plaintext
5 lines
279 B
Plaintext
spanRule: [object CSSStyleRule] ~ span { color: rgb(128, 0, 128); }
|
|
spanRule.style: [object CSSStyleDeclaration] ~ span { color: rgb(128, 0, 128); }
|
|
spanRule.style.parentRule: [object CSSStyleRule] ~ span { color: rgb(128, 0, 128); }
|
|
spanRule.style.parentRule === spanRule: true
|