1#import <HTML/HTMLElement.idl>
2
3// https://html.spec.whatwg.org/multipage/semantics.html#htmlbaseelement
4[Exposed=Window]
5interface HTMLBaseElement : HTMLElement {
6
7 [CEReactions] attribute USVString href;
8 [Reflect] attribute DOMString target;
9
10};