HTMLAreaElement.idl 712 B

1234567891011121314151617181920
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLAreaElement : HTMLElement {
  3. [Reflect=nohref] attribute boolean noHref;
  4. // FIXME: This should come from a HTMLHyperlinkElementUtils mixin
  5. [CEReactions] stringifier attribute USVString href;
  6. readonly attribute USVString origin;
  7. [CEReactions] attribute USVString protocol;
  8. [CEReactions] attribute USVString username;
  9. [CEReactions] attribute USVString password;
  10. [CEReactions] attribute USVString host;
  11. [CEReactions] attribute USVString hostname;
  12. [CEReactions] attribute USVString port;
  13. [CEReactions] attribute USVString pathname;
  14. [CEReactions] attribute USVString search;
  15. [CEReactions] attribute USVString hash;
  16. };