X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=build%2Fruntest%2Fenv.js;h=f4c54bb4bdf6dc7e1680d14e4347fe2962f547a5;hb=52c6739c20838f2d705d404664dcc0cfa07f2c30;hp=30cd8f1b447f41612b235d56c7c64f212ceb10eb;hpb=e155a6ae51fad3649e77ebc6f784e4fc6b957ad1;p=jquery.git diff --git a/build/runtest/env.js b/build/runtest/env.js index 30cd8f1..f4c54bb 100644 --- a/build/runtest/env.js +++ b/build/runtest/env.js @@ -203,6 +203,17 @@ var window = this; window.DOMElement = function(elem){ this._dom = elem; + this.style = {}; + + // Load CSS info + var styles = (new String(this.getAttribute("style") || "")) + .split(/\s*;\s*/); + + for ( var i = 0; i < styles.length; i++ ) { + var style = styles[i].split(/\s*:\s*/); + if ( style.length == 2 ) + this.style[ style[0] ] = style[1]; + } }; DOMElement.prototype = extend( new DOMNode(), { @@ -281,13 +292,22 @@ var window = this; offsetHeight: 0, offsetWidth: 0, - get disabled() { return !!this.getAttribute("disabled"); }, + get disabled() { + var val = this.getAttribute("disabled"); + return val != "false" && !!val; + }, set disabled(val) { return this.setAttribute("disabled",val); }, - get checked() { return !!this.getAttribute("checked"); }, + get checked() { + var val = this.getAttribute("checked"); + return val != "false" && !!val; + }, set checked(val) { return this.setAttribute("checked",val); }, - get selected() { return !!this.getAttribute("selected"); }, + get selected() { + var val = this.getAttribute("selected"); + return val != "false" && !!val; + }, set selected(val) { return this.setAttribute("selected",val); }, get className() { return this.getAttribute("class") || ""; }, @@ -343,7 +363,9 @@ var window = this; submit: function(){}, focus: function(){}, blur: function(){}, - elements: [] + get elements(){ + return this.getElementsByTagName("*"); + } }); // Helper method for extending one object with another