2020-08-01 03:04:26 +01:00
|
|
|
interface HTMLAreaElement : HTMLElement {
|
|
|
|
|
2020-11-12 04:16:41 +00:00
|
|
|
[Reflect=nohref] attribute boolean noHref;
|
2020-08-01 03:04:26 +01:00
|
|
|
|
2021-10-03 19:39:12 +02: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 21:26:42 +00:00
|
|
|
};
|