Sha256: 195c595e0a39edb3ed83eba2f3452974394ea71c7500a401b00c1f337d0f9583
Contents?: true
Size: 1.28 KB
Versions: 11
Compression:
Stored size: 1.28 KB
Contents
$debug("Defining HTMLAreaElement"); /* * HTMLAreaElement - DOM Level 2 */ var HTMLAreaElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLAreaElement.prototype = new HTMLElement; __extend__(HTMLAreaElement.prototype, { get accessKey(){ return this.getAttribute('accesskey'); }, set accessKey(value){ this.setAttribute('accesskey',value); }, get alt(){ return this.getAttribute('alt'); }, set alt(value){ this.setAttribute('alt',value); }, get coords(){ return this.getAttribute('coords'); }, set coords(value){ this.setAttribute('coords',value); }, get href(){ return this.getAttribute('href'); }, set href(value){ this.setAttribute('href',value); }, get noHref(){ return this.hasAttribute('href'); }, get shape(){ //TODO return 0; }, /*get tabIndex(){ return this.getAttribute('tabindex'); }, set tabIndex(value){ this.setAttribute('tabindex',value); },*/ get target(){ return this.getAttribute('target'); }, set target(value){ this.setAttribute('target',value); } }); // $w.HTMLAreaElement = HTMLAreaElement;
Version data entries
11 entries across 11 versions & 2 rubygems