Sha256: 64e1a980f6432b8cfc7db593f4dcd68126009450ed11bd67ba22443a8fe3a599
Contents?: true
Size: 652 Bytes
Versions: 11
Compression:
Stored size: 652 Bytes
Contents
$debug("Defining HTMLIFrameElement"); /* * HTMLIFrameElement - DOM Level 2 */ var HTMLIFrameElement = function(ownerDocument) { this.HTMLFrameElement = HTMLFrameElement; this.HTMLFrameElement(ownerDocument); }; HTMLIFrameElement.prototype = new HTMLFrameElement; __extend__(HTMLIFrameElement.prototype, { get height() { return this.getAttribute("height") || ""; }, set height(val) { return this.setAttribute("height",val); }, get width() { return this.getAttribute("width") || ""; }, set width(val) { return this.setAttribute("width",val); } }); // $w.HTMLIFrameElement = HTMLIFrameElement;
Version data entries
11 entries across 11 versions & 2 rubygems