css-counter-styles.idl (730B)
1 // 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 Module Level 3 (https://drafts.csswg.org/css-counter-styles-3/) 5 6 partial interface CSSRule { 7 const unsigned short COUNTER_STYLE_RULE = 11; 8 }; 9 10 [Exposed=Window] 11 interface 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 };