summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl
blob: 91c388bdf23f25c6767e0a02c6c4e213e7341d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#import <HTML/HTMLElement.idl>

interface HTMLAreaElement : HTMLElement {

    [Reflect=nohref] attribute boolean noHref;

    // FIXME: This should come from a HTMLHyperlinkElementUtils mixin
    [CEReactions] stringifier attribute USVString href;
    readonly attribute USVString origin;
    [CEReactions] attribute USVString protocol;
    [CEReactions] attribute USVString username;
    [CEReactions] attribute USVString password;
    [CEReactions] attribute USVString host;
    [CEReactions] attribute USVString hostname;
    [CEReactions] attribute USVString port;
    [CEReactions] attribute USVString pathname;
    [CEReactions] attribute USVString search;
    [CEReactions] attribute USVString hash;

};