Sha256: 8fe9e272bcc5e18352d13365af31f87e50cdd7e796b9038567d9a941a707109f
Contents?: true
Size: 1.15 KB
Versions: 11
Compression:
Stored size: 1.15 KB
Contents
$debug("Defining HTMLTableColElement"); /* * HTMLTableColElement - DOM Level 2 */ var HTMLTableColElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLTableColElement.prototype = new HTMLElement; __extend__(HTMLTableColElement.prototype, { get align(){ return this.getAttribute('align'); }, set align(value){ this.setAttribute('align', value); }, get ch(){ return this.getAttribute('ch'); }, set ch(value){ this.setAttribute('ch', value); }, get chOff(){ return this.getAttribute('ch'); }, set chOff(value){ this.setAttribute('ch', value); }, get span(){ return this.getAttribute('span'); }, set span(value){ this.setAttribute('span', value); }, get vAlign(){ return this.getAttribute('valign'); }, set vAlign(value){ this.setAttribute('valign', value); }, get width(){ return this.getAttribute('width'); }, set width(value){ this.setAttribute('width', value); } }); // $w.HTMLTableColElement = HTMLTableColElement;
Version data entries
11 entries across 11 versions & 2 rubygems