mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 14:42:50 +02:00
As part of this, we can now fill in the missing serialization steps. The parsing is a stub for now, and will be filled out in a subsequent commit. (cherry picked from commit 77238730165641f2bab7409f5c9fbaf575cbd99f)
10 lines
322 B
Plaintext
10 lines
322 B
Plaintext
#import <CSS/CSSGroupingRule.idl>
|
|
#import <CSS/CSSStyleDeclaration.idl>
|
|
|
|
// https://drafts.csswg.org/cssom/#the-cssstylerule-interface
|
|
[Exposed=Window]
|
|
interface CSSStyleRule : CSSGroupingRule {
|
|
attribute CSSOMString selectorText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
};
|