2020-07-31 23:04:26 -03:00
|
|
|
interface HTMLAreaElement : HTMLElement {
|
|
|
|
|
|
2020-11-12 01:16:41 -03:00
|
|
|
[Reflect=nohref] attribute boolean noHref;
|
2020-07-31 23:04:26 -03:00
|
|
|
|
2021-10-03 14:39:12 -03:00
|
|
|
// 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;
|
|
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|