diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl index 7cd0058305..318cddeb1f 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl @@ -2,4 +2,17 @@ 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; + }; |