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