Clean up whitespace in test/unit/effects.js

This commit is contained in:
Anton M 2011-02-13 23:02:14 +01:00
parent 3930afa3ad
commit dba8c20b4b

81
test/unit/effects.js vendored
View file

@ -39,24 +39,23 @@ test("show()", function() {
ok( pass, "Show" ); ok( pass, "Show" );
var speeds = { var speeds = {
"null speed": null, "null speed": null,
"undefined speed": undefined, "undefined speed": undefined,
"empty string speed": "", "empty string speed": "",
"false speed": false "false speed": false
}; };
jQuery.each(speeds, function(name, speed) { jQuery.each(speeds, function(name, speed) {
pass = true; pass = true;
div.hide().show(speed).each(function() { div.hide().show(speed).each(function() {
if ( this.style.display == "none" ) pass = false; if ( this.style.display == "none" ) pass = false;
}); });
ok( pass, "Show with " + name); ok( pass, "Show with " + name);
}); });
jQuery.each(speeds, function(name, speed) { jQuery.each(speeds, function(name, speed) {
pass = true; pass = true;
div.hide().show(speed, function() { div.hide().show(speed, function() {
pass = false; pass = false;
}); });
ok( pass, "Show with " + name + " does not call animate callback" ); ok( pass, "Show with " + name + " does not call animate callback" );
@ -132,9 +131,9 @@ test("show(Number) - other displays", function() {
// Supports #7397 // Supports #7397
test("Persist correct display value", function() { test("Persist correct display value", function() {
expect(3); expect(3);
QUnit.reset(); QUnit.reset();
stop(); stop();
@ -142,31 +141,25 @@ test("Persist correct display value", function() {
jQuery("#main").append('<div id="show-tests"><span style="position:absolute;">foo</span></div>'); jQuery("#main").append('<div id="show-tests"><span style="position:absolute;">foo</span></div>');
var $span = jQuery("#show-tests span"), var $span = jQuery("#show-tests span"),
displayNone = $span.css("display"), displayNone = $span.css("display"),
display = '', num = 0; display = '', num = 0;
$span.show(); $span.show();
display = $span.css("display"); display = $span.css("display");
$span.hide(); $span.hide();
$span.fadeIn(100, function() { $span.fadeIn(100, function() {
equals($span.css("display"), display, "Expecting display: " + display);
equals($span.css("display"), display, "Expecting display: " + display); $span.fadeOut(100, function () {
equals($span.css("display"), displayNone, "Expecting display: " + displayNone);
$span.fadeOut(100, function () { $span.fadeIn(100, function() {
equals($span.css("display"), display, "Expecting display: " + display);
equals($span.css("display"), displayNone, "Expecting display: " + displayNone); start();
});
$span.fadeIn(100, function() { });
});
equals($span.css("display"), display, "Expecting display: " + display);
start();
});
});
});
}); });
test("animate(Hash, Object, Function)", function() { test("animate(Hash, Object, Function)", function() {
@ -574,7 +567,7 @@ test("support negative values < -10000 (bug #7193)", function () {
equals( fx.cur(), -11000, "Element has margin-bottom of -11000" ); equals( fx.cur(), -11000, "Element has margin-bottom of -11000" );
delete jQuery.fx.step.marginBottom; delete jQuery.fx.step.marginBottom;
} }
}); });
jQuery("#main").css("marginBottom", "-11000px").animate({ marginBottom: "-11001px" }, { jQuery("#main").css("marginBottom", "-11000px").animate({ marginBottom: "-11001px" }, {
duration: 1, duration: 1,
@ -803,7 +796,7 @@ test("Chain toggle out", function() {
jQuery('#toggleout div').saveState(jQuery.support.shrinkWrapBlocks).toggle('fast').toggle('fast',jQuery.checkState); jQuery('#toggleout div').saveState(jQuery.support.shrinkWrapBlocks).toggle('fast').toggle('fast',jQuery.checkState);
}); });
test("Chain toggle out with easing and callback", function() { test("Chain toggle out with easing and callback", function() {
jQuery('#toggleout div').saveState(jQuery.support.shrinkWrapBlocks).toggle('fast').toggle('fast','linear',jQuery.checkState); jQuery('#toggleout div').saveState(jQuery.support.shrinkWrapBlocks).toggle('fast').toggle('fast','linear',jQuery.checkState);
}); });
test("Chain slideDown slideUp", function() { test("Chain slideDown slideUp", function() {
jQuery('#slidedown div').saveState(jQuery.support.shrinkWrapBlocks).slideDown('fast').slideUp('fast',jQuery.checkState); jQuery('#slidedown div').saveState(jQuery.support.shrinkWrapBlocks).slideDown('fast').slideUp('fast',jQuery.checkState);
@ -850,16 +843,16 @@ jQuery.makeTest.id = 1;
test("jQuery.show('fast') doesn't clear radio buttons (bug #1095)", function () { test("jQuery.show('fast') doesn't clear radio buttons (bug #1095)", function () {
expect(4); expect(4);
stop(); stop();
var $checkedtest = jQuery("#checkedtest"); var $checkedtest = jQuery("#checkedtest");
// IE6 was clearing "checked" in jQuery(elem).show("fast"); // IE6 was clearing "checked" in jQuery(elem).show("fast");
$checkedtest.hide().show("fast", function() { $checkedtest.hide().show("fast", function() {
ok( !! jQuery(":radio:first", $checkedtest).attr("checked"), "Check first radio still checked." ); ok( !! jQuery(":radio:first", $checkedtest).attr("checked"), "Check first radio still checked." );
ok( ! jQuery(":radio:last", $checkedtest).attr("checked"), "Check last radio still NOT checked." ); ok( ! jQuery(":radio:last", $checkedtest).attr("checked"), "Check last radio still NOT checked." );
ok( !! jQuery(":checkbox:first", $checkedtest).attr("checked"), "Check first checkbox still checked." ); ok( !! jQuery(":checkbox:first", $checkedtest).attr("checked"), "Check first checkbox still checked." );
ok( ! jQuery(":checkbox:last", $checkedtest).attr("checked"), "Check last checkbox still NOT checked." ); ok( ! jQuery(":checkbox:last", $checkedtest).attr("checked"), "Check last checkbox still NOT checked." );
start(); start();
}); });
}); });