HTMLFontElement.idl 392 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. [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString color;
  7. [CEReactions, Reflect] attribute DOMString face;
  8. [CEReactions, Reflect] attribute DOMString size;
  9. };