pub(crate) trait HTMLAreaElementMethods<D: DomTypes> {
Show 28 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) -> DomRoot<D::DOMTokenList>;
fn ReferrerPolicy(&self) -> DOMString;
fn SetReferrerPolicy(&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);
}