Sha256: 2a0f2df4407941718bec9aaf2dc655a8852549902d8a88d286282f1dfe4ce4cb
Contents?: true
Size: 529 Bytes
Versions: 11
Compression:
Stored size: 529 Bytes
Contents
$debug("Defining HTMLMapElement"); /* * HTMLMapElement - DOM Level 2 */ var HTMLMapElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLMapElement.prototype = new HTMLElement; __extend__(HTMLMapElement.prototype, { get areas(){ return this.getElementsByTagName('area'); }, get name(){ return this.getAttribute('name'); }, set name(value){ this.setAttribute('name',value); } }); // $w.HTMLMapElement = HTMLMapElement;
Version data entries
11 entries across 11 versions & 2 rubygems