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