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

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