mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
We don't yet parse or serialize any of the descriptors in the rule, just the rule itself and the name
18 lines
634 B
Plaintext
18 lines
634 B
Plaintext
#import <CSS/CSSRule.idl>
|
|
|
|
// https://drafts.csswg.org/css-counter-styles/#the-csscounterstylerule-interface
|
|
[Exposed=Window]
|
|
interface CSSCounterStyleRule : CSSRule {
|
|
attribute CSSOMString name;
|
|
[FIXME] attribute CSSOMString system;
|
|
[FIXME] attribute CSSOMString symbols;
|
|
[FIXME] attribute CSSOMString additiveSymbols;
|
|
[FIXME] attribute CSSOMString negative;
|
|
[FIXME] attribute CSSOMString prefix;
|
|
[FIXME] attribute CSSOMString suffix;
|
|
[FIXME] attribute CSSOMString range;
|
|
[FIXME] attribute CSSOMString pad;
|
|
[FIXME] attribute CSSOMString speakAs;
|
|
[FIXME] attribute CSSOMString fallback;
|
|
};
|