Sha256: ec37fe5888fde298211d05c696ef0cc4fae47808b53883f80cb60e9ed7e27a42
Contents?: true
Size: 658 Bytes
Versions: 10
Compression:
Stored size: 658 Bytes
Contents
$debug("Defining HTMLTextAreaElement"); /* * HTMLTextAreaElement - DOM Level 2 */ var HTMLTextAreaElement = function(ownerDocument) { this.HTMLInputAreaCommon = HTMLInputAreaCommon; this.HTMLInputAreaCommon(ownerDocument); }; HTMLTextAreaElement.prototype = new HTMLInputAreaCommon; __extend__(HTMLTextAreaElement.prototype, { get cols(){ return this.getAttribute('cols'); }, set cols(value){ this.setAttribute('cols', value); }, get rows(){ return this.getAttribute('rows'); }, set rows(value){ this.setAttribute('rows', value); } }); // $w.HTMLTextAreaElement = HTMLTextAreaElement;
Version data entries
10 entries across 10 versions & 1 rubygems