ladybird/Userland/Libraries/LibWeb/HTML/HTMLBaseElement.idl

13 lines
329 B
Text
Raw Normal View History

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/semantics.html#htmlbaseelement
[Exposed=Window, UseDeprecatedAKString]
interface HTMLBaseElement : HTMLElement {
[HTMLConstructor] constructor();
2022-06-19 15:45:09 +01:00
[CEReactions] attribute USVString href;
[CEReactions, Reflect] attribute DOMString target;
};