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