mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-07 12:20:12 +01:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlbrelement
|
|
[Exposed=Window]
|
|
interface HTMLBRElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString clear;
|
|
|
|
};
|