2022-02-15 22:10:51 +03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2020-08-01 05:04:26 +03:00
|
|
|
interface HTMLAreaElement : HTMLElement {
|
|
|
|
|
2020-11-12 07:16:41 +03:00
|
|
|
[Reflect=nohref] attribute boolean noHref;
|
2020-08-01 05:04:26 +03:00
|
|
|
|
2021-10-03 20: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-10 00:26:42 +03:00
|
|
|
};
|