summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLBaseElement.idl
blob: fe82387616164987bc894bbdc70fa172ac66b189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/semantics.html#htmlbaseelement
[Exposed=Window]
interface HTMLBaseElement : HTMLElement {

    [HTMLConstructor] constructor();

    [CEReactions] attribute USVString href;
    [CEReactions, Reflect] attribute DOMString target;

};