pub trait HTMLAnchorElementMethods {
Show 36 methods
// Required methods
fn Target(&self) -> DOMString;
fn SetTarget(&self, value: DOMString);
fn Rel(&self) -> DOMString;
fn SetRel(&self, value: DOMString, _can_gc: CanGc);
fn RelList(&self) -> Root<Dom<DOMTokenList>>;
fn Text(&self) -> DOMString;
fn SetText(&self, value: DOMString, _can_gc: CanGc);
fn Coords(&self) -> DOMString;
fn SetCoords(&self, value: DOMString);
fn Name(&self) -> DOMString;
fn SetName(&self, value: DOMString);
fn Rev(&self) -> DOMString;
fn SetRev(&self, value: DOMString);
fn Shape(&self) -> DOMString;
fn SetShape(&self, value: DOMString);
fn Href(&self) -> USVString;
fn SetHref(&self, value: USVString, _can_gc: CanGc);
fn Origin(&self) -> USVString;
fn Protocol(&self) -> USVString;
fn SetProtocol(&self, value: USVString, _can_gc: CanGc);
fn Username(&self) -> USVString;
fn SetUsername(&self, value: USVString, _can_gc: CanGc);
fn Password(&self) -> USVString;
fn SetPassword(&self, value: USVString, _can_gc: CanGc);
fn Host(&self) -> USVString;
fn SetHost(&self, value: USVString, _can_gc: CanGc);
fn Hostname(&self) -> USVString;
fn SetHostname(&self, value: USVString, _can_gc: CanGc);
fn Port(&self) -> USVString;
fn SetPort(&self, value: USVString, _can_gc: CanGc);
fn Pathname(&self) -> USVString;
fn SetPathname(&self, value: USVString, _can_gc: CanGc);
fn Search(&self) -> USVString;
fn SetSearch(&self, value: USVString, _can_gc: CanGc);
fn Hash(&self) -> USVString;
fn SetHash(&self, value: USVString, _can_gc: CanGc);
}