blob: 86c89e1eb2f8429ada052663eed2fd3412f437bd [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: CSS Counter Styles Level 3 (https://drafts.csswg.org/css-counter-styles/)
5
6partial interface CSSRule {
7 const unsigned short COUNTER_STYLE_RULE = 11;
8};
9
10[Exposed=Window]
11interface CSSCounterStyleRule : CSSRule {
12 attribute CSSOMString name;
13 attribute CSSOMString system;
14 attribute CSSOMString symbols;
15 attribute CSSOMString additiveSymbols;
16 attribute CSSOMString negative;
17 attribute CSSOMString prefix;
18 attribute CSSOMString suffix;
19 attribute CSSOMString range;
20 attribute CSSOMString pad;
21 attribute CSSOMString speakAs;
22 attribute CSSOMString fallback;
23};