1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 17:24:57 +00:00
serenity/Userland/Libraries/LibWeb/HTML/HTMLFontElement.idl
2023-03-23 13:37:40 +01:00

13 lines
353 B
Text

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