00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 module html {
00022
00023 interface HTMLAnchorElement : HTMLElement {
00024 attribute DOMString accessKey;
00025 attribute DOMString charset;
00026 attribute DOMString coords;
00027 attribute DOMString href;
00028 attribute DOMString hreflang;
00029 attribute DOMString name;
00030 attribute DOMString rel;
00031 attribute DOMString rev;
00032 attribute DOMString shape;
00033 attribute long tabIndex;
00034 attribute DOMString target;
00035 attribute DOMString type;
00036
00037 void blur();
00038 void focus();
00039
00040
00041 readonly attribute DOMString hash;
00042 readonly attribute DOMString host;
00043 readonly attribute DOMString hostname;
00044 readonly attribute DOMString pathname;
00045 readonly attribute DOMString port;
00046 readonly attribute DOMString protocol;
00047 readonly attribute DOMString search;
00048 readonly attribute DOMString text;
00049
00050 #if defined(LANGUAGE_OBJECTIVE_C)
00051
00052 readonly attribute URL absoluteLinkURL;
00053 #endif
00054 };
00055
00056 }