Sha256: 29527af2266e3d67221d1674369f592d796855f2ee79b4feaca3e1c3527b9cd5

Contents?: true

Size: 646 Bytes

Versions: 11

Compression:

Stored size: 646 Bytes

Contents

$debug("Defining HTMLOptGroupElement");
/* 
* HTMLOptGroupElement - DOM Level 2
*/
var HTMLOptGroupElement = function(ownerDocument) {
    this.HTMLElement = HTMLElement;
    this.HTMLElement(ownerDocument);
};
HTMLOptGroupElement.prototype = new HTMLElement;
__extend__(HTMLOptGroupElement.prototype, {
    get disabled(){
        return this.getAttribute('disabled');
    },
    set disabled(value){
        this.setAttribute('disabled',value);
    },
    get label(){
        return this.getAttribute('label');
    },
    set label(value){
        this.setAttribute('label',value);
    }
});

// $w.HTMLOptGroupElement = HTMLOptGroupElement;		

Version data entries

11 entries across 11 versions & 2 rubygems

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