HTMLStyleElement.idl 294 B

12345678910111213
  1. #import <CSS/CSSStyleSheet.idl>
  2. #import <HTML/HTMLElement.idl>
  3. interface HTMLStyleElement : HTMLElement {
  4. [Reflect] attribute DOMString media;
  5. [Reflect] attribute DOMString type;
  6. // FIXME: This should come from a LinkStyle mixin
  7. readonly attribute CSSStyleSheet? sheet;
  8. };