HTMLFontElement.idl 353 B

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