CSSRuleList.idl 223 B

12345678910
  1. #import <CSS/CSSRule.idl>
  2. // https://www.w3.org/TR/cssom/#the-cssrulelist-interface
  3. [Exposed=Window]
  4. interface CSSRuleList {
  5. getter CSSRule? item(unsigned long index);
  6. readonly attribute unsigned long length;
  7. };