Sha256: 2b993dcfeaecab5cf93ee2965cdca4b0cafbf50b16f2887c9a415d36125c8ed7
Contents?: true
Size: 627 Bytes
Versions: 11
Compression:
Stored size: 627 Bytes
Contents
$debug("Defining HTMLFrameSetElement"); /* * HTMLFrameSetElement - DOM Level 2 */ var HTMLFrameSetElement = function(ownerDocument) { this.HTMLElement = HTMLElement; this.HTMLElement(ownerDocument); }; HTMLFrameSetElement.prototype = new HTMLElement; __extend__(HTMLFrameSetElement.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.HTMLFrameSetElement = HTMLFrameSetElement;
Version data entries
11 entries across 11 versions & 2 rubygems