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

Version Path
envjs19-0.3.8.20101029121421 src/html/col-colgroup.js
envjs-0.3.8 src/html/col-colgroup.js
envjs-0.3.7 src/html/col-colgroup.js
envjs-0.3.6 src/html/col-colgroup.js
envjs-0.3.5 src/html/col-colgroup.js
envjs-0.3.4 src/html/col-colgroup.js
envjs-0.3.3 src/html/col-colgroup.js
envjs-0.3.2 src/html/col-colgroup.js
envjs-0.3.1 src/html/col-colgroup.js
envjs-0.3.0 src/html/col-colgroup.js
envjs-0.2.0 src/html/col-colgroup.js