CSSPropertyRule.idl 354 B

1234567891011
  1. #import <CSS/CSSRule.idl>
  2. // https://drafts.css-houdini.org/css-properties-values-api/#the-css-property-rule-interface
  3. [Exposed=Window]
  4. interface CSSPropertyRule : CSSRule {
  5. readonly attribute CSSOMString name;
  6. readonly attribute CSSOMString syntax;
  7. readonly attribute boolean inherits;
  8. readonly attribute CSSOMString? initialValue;
  9. };