Newer
Older
minerva / Userland / Libraries / LibWeb / HTML / HTMLBRElement.idl
@minerva minerva on 13 Jul 257 bytes Initial commit
#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;

};