mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:44:58 +00:00

There are a handful of FIXME's here, but this seems generally good. Note that CSS *values* don't get serialized in a spec-compliant way since we currently rely on StyleValue::to_string() which is ad-hoc.
7 lines
189 B
Text
7 lines
189 B
Text
interface CSSStyleRule {
|
|
|
|
attribute CSSOMString selectorText;
|
|
attribute CSSOMString cssText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
|
|
};
|