Make sure that effect tests no longer reference the old CSS methods.
This commit is contained in:
parent
a166860a19
commit
70377a65e2
6
test/unit/effects.js
vendored
6
test/unit/effects.js
vendored
|
@ -480,7 +480,7 @@ jQuery.each( {
|
||||||
if ( t_h == "hide"||t_h == "show" )
|
if ( t_h == "hide"||t_h == "show" )
|
||||||
equals(this.style.height.indexOf(f_h), 0, "Height must be reset to " + f_h + ": " + this.style.height);
|
equals(this.style.height.indexOf(f_h), 0, "Height must be reset to " + f_h + ": " + this.style.height);
|
||||||
|
|
||||||
var cur_o = jQuery.style(this, "opacity");
|
var cur_o = jQuery.css(this, "opacity", undefined, true);
|
||||||
if ( cur_o !== "" ) cur_o = parseFloat( cur_o );
|
if ( cur_o !== "" ) cur_o = parseFloat( cur_o );
|
||||||
|
|
||||||
if ( t_o == "hide"||t_o == "show" )
|
if ( t_o == "hide"||t_o == "show" )
|
||||||
|
@ -492,7 +492,7 @@ jQuery.each( {
|
||||||
if ( t_o.constructor == Number ) {
|
if ( t_o.constructor == Number ) {
|
||||||
equals(cur_o, t_o, "Final opacity should be " + t_o + ": " + cur_o);
|
equals(cur_o, t_o, "Final opacity should be " + t_o + ": " + cur_o);
|
||||||
|
|
||||||
ok(jQuery.curCSS(this, "opacity") != "" || cur_o == t_o, "Opacity should be explicitly set to " + t_o + ", is instead: " + cur_o);
|
ok(jQuery.css(this, "opacity") != "" || cur_o == t_o, "Opacity should be explicitly set to " + t_o + ", is instead: " + cur_o);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( t_w.constructor == Number ) {
|
if ( t_w.constructor == Number ) {
|
||||||
|
@ -512,7 +512,7 @@ jQuery.each( {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( t_h == "show" ) {
|
if ( t_h == "show" ) {
|
||||||
var old_h = jQuery.curCSS(this, "height");
|
var old_h = jQuery.css(this, "height");
|
||||||
jQuery(elem).append("<br/>Some more text<br/>and some more...");
|
jQuery(elem).append("<br/>Some more text<br/>and some more...");
|
||||||
ok(old_h != jQuery.css(this, "height" ), "Make sure height is auto.");
|
ok(old_h != jQuery.css(this, "height" ), "Make sure height is auto.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue