HTMLFontElement.idl 315 B

1234567891011
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmlfontelement
  3. [Exposed=Window]
  4. interface HTMLFontElement : HTMLElement {
  5. [LegacyNullToEmptyString, Reflect] attribute DOMString color;
  6. [Reflect] attribute DOMString face;
  7. [Reflect] attribute DOMString size;
  8. };