1 module("effects", { teardown
: moduleTeardown
});
3 test("sanity check", function() {
5 ok( jQuery("#dl:visible, #main:visible, #foo:visible").length
=== 3, "QUnit state is correct for testing effects" );
8 test("show()", function() {
11 var hiddendiv
= jQuery("div.hidden");
13 hiddendiv
.hide().show();
15 equals( hiddendiv
.css("display"), "block", "Make sure a pre-hidden div is visible." );
17 var div
= jQuery("<div>").hide().appendTo("#main").show();
19 equal( div
.css("display"), "block", "Make sure pre-hidden divs show" );
23 hiddendiv
= jQuery("div.hidden");
25 equal(jQuery
.css( hiddendiv
[0], "display"), "none", "hiddendiv is display: none");
27 hiddendiv
.css("display", "block");
28 equal(jQuery
.css( hiddendiv
[0], "display"), "block", "hiddendiv is display: block");
31 equal(jQuery
.css( hiddendiv
[0], "display"), "block", "hiddendiv is display: block");
33 hiddendiv
.css("display","");
35 var pass
= true, div
= jQuery("#main div");
36 div
.show().each(function(){
37 if ( this.style
.display
== "none" ) pass
= false;
43 "undefined speed": undefined,
44 "empty string speed": "",
48 jQuery
.each(speeds
, function(name
, speed
) {
50 div
.hide().show(speed
).each(function() {
51 if ( this.style
.display
== "none" ) pass
= false;
53 ok( pass
, "Show with " + name
);
56 jQuery
.each(speeds
, function(name
, speed
) {
58 div
.hide().show(speed
, function() {
61 ok( pass
, "Show with " + name
+ " does not call animate callback" );
64 // #show-tests * is set display: none in CSS
65 jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div><table id="test-table"></table>');
67 var old
= jQuery("#test-table").show().css("display") !== "table";
68 jQuery("#test-table").remove();
77 "table" : old
? "block" : "table",
78 "thead" : old
? "block" : "table-header-group",
79 "tbody" : old
? "block" : "table-row-group",
80 "tr" : old
? "block" : "table-row",
81 "th" : old
? "block" : "table-cell",
82 "td" : old
? "block" : "table-cell",
84 "li" : old
? "block" : "list-item"
87 jQuery
.each(test
, function(selector
, expected
) {
88 var elem
= jQuery(selector
, "#show-tests").show();
89 equals( elem
.css("display"), expected
, "Show using correct display type for " + selector
);
93 test("show(Number) - other displays", function() {
98 // #show-tests * is set display: none in CSS
99 jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div><table id="test-table"></table>');
101 var old
= jQuery("#test-table").show().css("display") !== "table",
103 jQuery("#test-table").remove();
112 "table" : old
? "block" : "table",
113 "thead" : old
? "block" : "table-header-group",
114 "tbody" : old
? "block" : "table-row-group",
115 "tr" : old
? "block" : "table-row",
116 "th" : old
? "block" : "table-cell",
117 "td" : old
? "block" : "table-cell",
119 "li" : old
? "block" : "list-item"
122 jQuery
.each(test
, function(selector
, expected
) {
123 var elem
= jQuery(selector
, "#show-tests").show(1, function() {
124 equals( elem
.css("display"), expected
, "Show using correct display type for " + selector
);
125 if ( ++num
=== 15 ) {
135 test("Persist correct display value", function() {
140 // #show-tests * is set display: none in CSS
141 jQuery("#main").append('<div id="show-tests"><span style="position:absolute;">foo</span></div>');
143 var $span
= jQuery("#show-tests span"),
144 displayNone
= $span
.css("display"),
145 display
= '', num
= 0;
149 display
= $span
.css("display");
153 $span
.fadeIn(100, function() {
154 equals($span
.css("display"), display
, "Expecting display: " + display
);
155 $span
.fadeOut(100, function () {
156 equals($span
.css("display"), displayNone
, "Expecting display: " + displayNone
);
157 $span
.fadeIn(100, function() {
158 equals($span
.css("display"), display
, "Expecting display: " + display
);
165 test("animate(Hash, Object, Function)", function() {
168 var hash
= {opacity
: 'show'};
169 var hashCopy
= jQuery
.extend({}, hash
);
170 jQuery('#foo').animate(hash
, 0, function() {
171 equals( hash
.opacity
, hashCopy
.opacity
, 'Check if animate changed the hash parameter' );
176 test("animate negative height", function() {
179 jQuery("#foo").animate({ height
: -100 }, 100, function() {
180 equals( this.offsetHeight
, 0, "Verify height." );
185 test("animate block as inline width/height", function() {
188 var span
= jQuery("<span>").css("display", "inline-block").appendTo("body"),
189 expected
= span
.css("display");
193 if ( jQuery
.support
.inlineBlockNeedsLayout
|| expected
=== "inline-block" ) {
196 jQuery("#foo").css({ display
: "inline", width
: '', height
: '' }).animate({ width
: 42, height
: 42 }, 100, function() {
197 equals( jQuery(this).css("display"), jQuery
.support
.inlineBlockNeedsLayout
? "inline" : "inline-block", "inline-block was set on non-floated inline element when animating width/height" );
198 equals( this.offsetWidth
, 42, "width was animated" );
199 equals( this.offsetHeight
, 42, "height was animated" );
203 // Browser doesn't support inline-block
205 ok( true, "Browser doesn't support inline-block" );
206 ok( true, "Browser doesn't support inline-block" );
207 ok( true, "Browser doesn't support inline-block" );
211 test("animate native inline width/height", function() {
214 var span
= jQuery("<span>").css("display", "inline-block").appendTo("body"),
215 expected
= span
.css("display");
219 if ( jQuery
.support
.inlineBlockNeedsLayout
|| expected
=== "inline-block" ) {
221 jQuery("#foo").css({ display
: "", width
: '', height
: '' })
222 .append('<span>text</span>')
224 .animate({ width
: 42, height
: 42 }, 100, function() {
225 equals( jQuery(this).css("display"), "inline-block", "inline-block was set on non-floated inline element when animating width/height" );
226 equals( this.offsetWidth
, 42, "width was animated" );
227 equals( this.offsetHeight
, 42, "height was animated" );
231 // Browser doesn't support inline-block
233 ok( true, "Browser doesn't support inline-block" );
234 ok( true, "Browser doesn't support inline-block" );
235 ok( true, "Browser doesn't support inline-block" );
239 test("animate block width/height", function() {
242 jQuery("#foo").css({ display
: "block", width
: 20, height
: 20 }).animate({ width
: 42, height
: 42 }, 100, function() {
243 equals( jQuery(this).css("display"), "block", "inline-block was not set on block element when animating width/height" );
244 equals( this.offsetWidth
, 42, "width was animated" );
245 equals( this.offsetHeight
, 42, "height was animated" );
250 test("animate table width/height", function() {
254 var displayMode
= jQuery("#table").css("display") !== "table" ? "block" : "table";
256 jQuery("#table").animate({ width
: 42, height
: 42 }, 100, function() {
257 equals( jQuery(this).css("display"), displayMode
, "display mode is correct" );
262 test("animate table-row width/height", function() {
265 var tr
= jQuery("#table")
266 .attr({ "cellspacing": 0, "cellpadding": 0, "border": 0 })
267 .html("<tr style='height:42px;'><td style='padding:0;'><div style='width:20px;height:20px;'></div></td></tr>")
270 // IE<8 uses “block” instead of the correct display type
271 var displayMode
= tr
.css("display") !== "table-row" ? "block" : "table-row";
273 tr
.animate({ width
: 10, height
: 10 }, 100, function() {
274 equals( jQuery(this).css("display"), displayMode
, "display mode is correct" );
275 equals( this.offsetWidth
, 20, "width animated to shrink wrap point" );
276 equals( this.offsetHeight
, 20, "height animated to shrink wrap point" );
281 test("animate table-cell width/height", function() {
284 var td
= jQuery("#table")
285 .attr({ "cellspacing": 0, "cellpadding": 0, "border": 0 })
286 .html("<tr><td style='width:42px;height:42px;padding:0;'><div style='width:20px;height:20px;'></div></td></tr>")
289 // IE<8 uses “block” instead of the correct display type
290 var displayMode
= td
.css("display") !== "table-cell" ? "block" : "table-cell";
292 td
.animate({ width
: 10, height
: 10 }, 100, function() {
293 equals( jQuery(this).css("display"), displayMode
, "display mode is correct" );
294 equals( this.offsetWidth
, 20, "width animated to shrink wrap point" );
295 equals( this.offsetHeight
, 20, "height animated to shrink wrap point" );
300 test("animate resets overflow-x and overflow-y when finished", function() {
304 .css({ display
: "block", width
: 20, height
: 20, overflowX
: "visible", overflowY
: "auto" })
305 .animate({ width
: 42, height
: 42 }, 100, function() {
306 equals( this.style
.overflowX
, "visible", "overflow-x is visible" );
307 equals( this.style
.overflowY
, "auto", "overflow-y is auto" );
312 /* // This test ends up being flaky depending upon the CPU load
313 test("animate option (queue === false)", function () {
319 var $foo = jQuery("#foo");
320 $foo.animate({width:'100px'}, 3000, function () {
321 // should finish after unqueued animation so second
323 same( order, [ 1, 2 ], "Animations finished in the correct order" );
326 $foo.animate({fontSize:'2em'}, {queue:false, duration:10, complete:function () {
327 // short duration and out of queue so should finish first
333 test("animate with no properties", function() {
336 var divs
= jQuery("div"), count
= 0;
338 divs
.animate({}, function(){
342 equals( divs
.length
, count
, "Make sure that callback is called for each element in the set." );
346 var foo
= jQuery("#foo");
349 foo
.animate({top
: 10}, 100, function(){
350 ok( true, "Animation was properly dequeued." );
355 test("animate duration 0", function() {
360 var $elems
= jQuery([{ a
:0 },{ a
:0 }]), counter
= 0;
362 equals( jQuery
.timers
.length
, 0, "Make sure no animation was running from another test" );
364 $elems
.eq(0).animate( {a
:1}, 0, function(){
365 ok( true, "Animate a simple property." );
369 // Failed until [6115]
370 equals( jQuery
.timers
.length
, 0, "Make sure synchronic animations are not left on jQuery.timers" );
372 equals( counter
, 1, "One synchronic animations" );
374 $elems
.animate( { a
:2 }, 0, function(){
375 ok( true, "Animate a second simple property." );
379 equals( counter
, 3, "Multiple synchronic animations" );
381 $elems
.eq(0).animate( {a
:3}, 0, function(){
382 ok( true, "Animate a third simple property." );
385 $elems
.eq(1).animate( {a
:3}, 200, function(){
387 // Failed until [6115]
388 equals( counter
, 5, "One synchronic and one asynchronic" );
392 var $elem
= jQuery("<div />");
393 $elem
.show(0, function(){
394 ok(true, "Show callback with no duration");
396 $elem
.hide(0, function(){
397 ok(true, "Hide callback with no duration");
400 // manually clean up detached elements
404 test("animate hyphenated properties", function(){
409 .css("font-size", 10)
410 .animate({"font-size": 20}, 200, function(){
411 equals( this.style
.fontSize
, "20px", "The font-size property was animated." );
416 test("animate non-element", function(){
420 var obj
= { test
: 0 };
422 jQuery(obj
).animate({test
: 200}, 200, function(){
423 equals( obj
.test
, 200, "The custom property should be modified." );
428 test("stop()", function() {
432 var $foo
= jQuery("#foo");
434 $foo
.hide().width(200).width();
436 $foo
.animate({ width
:'show' }, 1000);
437 setTimeout(function(){
438 var nw
= $foo
.width();
439 notEqual( nw
, w
, "An animation occurred " + nw
+ "px " + w
+ "px");
443 notEqual( nw
, w
, "Stop didn't reset the animation " + nw
+ "px " + w
+ "px");
444 setTimeout(function(){
446 $foo
.removeData(undefined, true);
447 equals( nw
, $foo
.width(), "The animation didn't continue" );
453 test("stop() - several in queue", function() {
457 var $foo
= jQuery("#foo");
459 $foo
.hide().width(200).width();
461 $foo
.animate({ width
:'show' }, 1000);
462 $foo
.animate({ width
:'hide' }, 1000);
463 $foo
.animate({ width
:'show' }, 1000);
464 setTimeout(function(){
465 equals( $foo
.queue().length
, 3, "All 3 still in the queue" );
466 var nw
= $foo
.width();
467 notEqual( nw
, w
, "An animation occurred " + nw
+ "px " + w
+ "px");
471 notEqual( nw
, w
, "Stop didn't reset the animation " + nw
+ "px " + w
+ "px");
478 test("stop(clearQueue)", function() {
482 var $foo
= jQuery("#foo");
484 $foo
.hide().width(200).width();
486 $foo
.animate({ width
:'show' }, 1000);
487 $foo
.animate({ width
:'hide' }, 1000);
488 $foo
.animate({ width
:'show' }, 1000);
489 setTimeout(function(){
490 var nw
= $foo
.width();
491 ok( nw
!= w
, "An animation occurred " + nw
+ "px " + w
+ "px");
495 ok( nw
!= w
, "Stop didn't reset the animation " + nw
+ "px " + w
+ "px");
497 equals( $foo
.queue().length
, 0, "The animation queue was cleared" );
498 setTimeout(function(){
499 equals( nw
, $foo
.width(), "The animation didn't continue" );
505 test("stop(clearQueue, gotoEnd)", function() {
509 var $foo
= jQuery("#foo");
511 $foo
.hide().width(200).width();
513 $foo
.animate({ width
:'show' }, 1000);
514 $foo
.animate({ width
:'hide' }, 1000);
515 $foo
.animate({ width
:'show' }, 1000);
516 $foo
.animate({ width
:'hide' }, 1000);
517 setTimeout(function(){
518 var nw
= $foo
.width();
519 ok( nw
!= w
, "An animation occurred " + nw
+ "px " + w
+ "px");
520 $foo
.stop(false, true);
523 // Disabled, being flaky
524 //equals( nw, 1, "Stop() reset the animation" );
526 setTimeout(function(){
527 // Disabled, being flaky
528 //equals( $foo.queue().length, 2, "The next animation continued" );
535 test("toggle()", function() {
537 var x
= jQuery("#foo");
538 ok( x
.is(":visible"), "is visible" );
540 ok( x
.is(":hidden"), "is hidden" );
542 ok( x
.is(":visible"), "is visible again" );
545 ok( x
.is(":visible"), "is visible" );
547 ok( x
.is(":hidden"), "is hidden" );
549 ok( x
.is(":visible"), "is visible again" );
552 jQuery
.checkOverflowDisplay = function(){
553 var o
= jQuery
.css( this, "overflow" );
555 equals(o
, "visible", "Overflow should be visible: " + o
);
556 equals(jQuery
.css( this, "display" ), "inline", "Display shouldn't be tampered with.");
561 test( "jQuery.fx.prototype.cur()", 6, function() {
562 var div
= jQuery( "<div></div>" ).appendTo( "#main" ).css({
564 border
: "5px solid black",
566 marginBottom
: "-11000px"
570 ( new jQuery
.fx( div
, {}, "color" ) ).cur(),
571 jQuery
.css( div
, "color" ),
572 "Return the same value as jQuery.css for complex properties (bug #7912)"
576 ( new jQuery
.fx( div
, {}, "borderLeftWidth" ) ).cur(),
578 "Return simple values parsed as Float"
581 // backgroundPosition actually returns 0% 0% in most browser
582 // this fakes a "" return
583 jQuery
.cssHooks
.backgroundPosition
= {
585 ok( true, "hook used" );
591 ( new jQuery
.fx( div
, {}, "backgroundPosition" ) ).cur(),
593 "Return 0 when jQuery.css returns an empty string"
596 delete jQuery
.cssHooks
.backgroundPosition
;
599 ( new jQuery
.fx( div
, {}, "left" ) ).cur(),
601 "Return 0 when jQuery.css returns 'auto'"
605 ( new jQuery
.fx( div
, {}, "marginBottom" ) ).cur(),
607 "support negative values < -10000 (bug #7193)"
611 test("JS Overflow and Display", function() {
614 jQuery
.makeTest( "JS Overflow and Display" )
615 .addClass("widewidth")
616 .css({ overflow
: "visible", display
: "inline" })
617 .addClass("widewidth")
618 .text("Some sample text.")
619 .before("text before")
621 .animate({ opacity
: 0.5 }, "slow", jQuery
.checkOverflowDisplay
);
624 test("CSS Overflow and Display", function() {
627 jQuery
.makeTest( "CSS Overflow and Display" )
628 .addClass("overflow inline")
629 .addClass("widewidth")
630 .text("Some sample text.")
631 .before("text before")
633 .animate({ opacity
: 0.5 }, "slow", jQuery
.checkOverflowDisplay
);
637 "CSS Auto": function(elem
,prop
){
638 jQuery(elem
).addClass("auto" + prop
)
639 .text("This is a long string of text.");
642 "JS Auto": function(elem
,prop
){
643 jQuery(elem
).css(prop
,"")
644 .text("This is a long string of text.");
647 "CSS 100": function(elem
,prop
){
648 jQuery(elem
).addClass("large" + prop
);
651 "JS 100": function(elem
,prop
){
652 jQuery(elem
).css(prop
,prop
== "opacity" ? 1 : "100px");
653 return prop
== "opacity" ? 1 : 100;
655 "CSS 50": function(elem
,prop
){
656 jQuery(elem
).addClass("med" + prop
);
659 "JS 50": function(elem
,prop
){
660 jQuery(elem
).css(prop
,prop
== "opacity" ? 0.50 : "50px");
661 return prop
== "opacity" ? 0.5 : 50;
663 "CSS 0": function(elem
,prop
){
664 jQuery(elem
).addClass("no" + prop
);
667 "JS 0": function(elem
,prop
){
668 jQuery(elem
).css(prop
,prop
== "opacity" ? 0 : "0px");
673 "show": function(elem
,prop
){
674 jQuery(elem
).hide().addClass("wide"+prop
);
677 "hide": function(elem
,prop
){
678 jQuery(elem
).addClass("wide"+prop
);
681 "100": function(elem
,prop
){
682 jQuery(elem
).addClass("wide"+prop
);
683 return prop
== "opacity" ? 1 : 100;
685 "50": function(elem
,prop
){
686 return prop
== "opacity" ? 0.50 : 50;
688 "0": function(elem
,prop
){
689 jQuery(elem
).addClass("noback");
693 test(fn
+ " to " + tn
, function() {
694 var elem
= jQuery
.makeTest( fn
+ " to " + tn
);
696 var t_w
= t( elem
, "width" );
697 var f_w
= f( elem
, "width" );
698 var t_h
= t( elem
, "height" );
699 var f_h
= f( elem
, "height" );
700 var t_o
= t( elem
, "opacity" );
701 var f_o
= f( elem
, "opacity" );
705 if ( t_h
== "show" ) num
++;
706 if ( t_w
== "show" ) num
++;
707 if ( t_w
== "hide"||t_w
== "show" ) num
++;
708 if ( t_h
== "hide"||t_h
== "show" ) num
++;
709 if ( t_o
== "hide"||t_o
== "show" ) num
++;
710 if ( t_w
== "hide" ) num
++;
711 if ( t_o
.constructor == Number
) num
+= 2;
712 if ( t_w
.constructor == Number
) num
+= 2;
713 if ( t_h
.constructor == Number
) num
+=2;
718 var anim
= { width
: t_w
, height
: t_h
, opacity
: t_o
};
720 elem
.animate(anim
, 50, function(){
722 equals( this.style
.display
, "block", "Showing, display should block: " + this.style
.display
);
724 if ( t_w
== "hide"||t_w
== "show" )
725 ok(f_w
=== "" ? this.style
.width
=== f_w
: this.style
.width
.indexOf(f_w
) === 0, "Width must be reset to " + f_w
+ ": " + this.style
.width
);
727 if ( t_h
== "hide"||t_h
== "show" )
728 ok(f_h
=== "" ? this.style
.height
=== f_h
: this.style
.height
.indexOf(f_h
) === 0, "Height must be reset to " + f_h
+ ": " + this.style
.height
);
730 var cur_o
= jQuery
.style(this, "opacity");
732 if ( t_o
== "hide" || t_o
== "show" )
733 equals(cur_o
, f_o
, "Opacity must be reset to " + f_o
+ ": " + cur_o
);
736 equals(this.style
.display
, "none", "Hiding, display should be none: " + this.style
.display
);
738 if ( t_o
.constructor == Number
) {
739 equals(cur_o
, t_o
, "Final opacity should be " + t_o
+ ": " + cur_o
);
741 ok(jQuery
.css(this, "opacity") != "" || cur_o
== t_o
, "Opacity should be explicitly set to " + t_o
+ ", is instead: " + cur_o
);
744 if ( t_w
.constructor == Number
) {
745 equals(this.style
.width
, t_w
+ "px", "Final width should be " + t_w
+ ": " + this.style
.width
);
747 var cur_w
= jQuery
.css(this,"width");
749 ok(this.style
.width
!= "" || cur_w
== t_w
, "Width should be explicitly set to " + t_w
+ ", is instead: " + cur_w
);
752 if ( t_h
.constructor == Number
) {
753 equals(this.style
.height
, t_h
+ "px", "Final height should be " + t_h
+ ": " + this.style
.height
);
755 var cur_h
= jQuery
.css(this,"height");
757 ok(this.style
.height
!= "" || cur_h
== t_h
, "Height should be explicitly set to " + t_h
+ ", is instead: " + cur_w
);
760 if ( t_h
== "show" ) {
761 var old_h
= jQuery
.css(this, "height");
762 jQuery(this).append("<br/>Some more text<br/>and some more...");
764 if ( /Auto/.test( fn
) ) {
765 notEqual(jQuery
.css(this, "height"), old_h
, "Make sure height is auto.");
767 equals(jQuery
.css(this, "height"), old_h
, "Make sure height is not auto.");
771 // manually remove generated element
772 jQuery(this).remove();
780 jQuery
.fn
.saveState = function(hiddenOverflow
){
781 var check
= ['opacity','height','width','display','overflow'];
782 expect(check
.length
);
785 return this.each(function(){
788 jQuery
.each(check
, function(i
,c
){
789 self
.save
[c
] = c
=== "overflow" && hiddenOverflow
? "hidden" : self
.style
[ c
] || jQuery
.css(self
,c
);
794 jQuery
.checkState = function(){
796 jQuery
.each(this.save
, function(c
,v
){
797 var cur
= self
.style
[ c
] || jQuery
.css(self
, c
);
798 equals( cur
, v
, "Make sure that " + c
+ " is reset (Old: " + v
+ " Cur: " + cur
+ ")");
801 // manually clean data on modified element
802 jQuery
.removeData(this, 'olddisplay', true);
808 test("Chain fadeOut fadeIn", function() {
809 jQuery('#fadein div').saveState().fadeOut('fast').fadeIn('fast',jQuery
.checkState
);
811 test("Chain fadeIn fadeOut", function() {
812 jQuery('#fadeout div').saveState().fadeIn('fast').fadeOut('fast',jQuery
.checkState
);
815 test("Chain hide show", function() {
816 jQuery('#show div').saveState(jQuery
.support
.shrinkWrapBlocks
).hide('fast').show('fast',jQuery
.checkState
);
818 test("Chain show hide", function() {
819 jQuery('#hide div').saveState(jQuery
.support
.shrinkWrapBlocks
).show('fast').hide('fast',jQuery
.checkState
);
821 test("Chain show hide with easing and callback", function() {
822 jQuery('#hide div').saveState().show('fast').hide('fast','linear',jQuery
.checkState
);
825 test("Chain toggle in", function() {
826 jQuery('#togglein div').saveState(jQuery
.support
.shrinkWrapBlocks
).toggle('fast').toggle('fast',jQuery
.checkState
);
828 test("Chain toggle out", function() {
829 jQuery('#toggleout div').saveState(jQuery
.support
.shrinkWrapBlocks
).toggle('fast').toggle('fast',jQuery
.checkState
);
831 test("Chain toggle out with easing and callback", function() {
832 jQuery('#toggleout div').saveState(jQuery
.support
.shrinkWrapBlocks
).toggle('fast').toggle('fast','linear',jQuery
.checkState
);
834 test("Chain slideDown slideUp", function() {
835 jQuery('#slidedown div').saveState(jQuery
.support
.shrinkWrapBlocks
).slideDown('fast').slideUp('fast',jQuery
.checkState
);
837 test("Chain slideUp slideDown", function() {
838 jQuery('#slideup div').saveState(jQuery
.support
.shrinkWrapBlocks
).slideUp('fast').slideDown('fast',jQuery
.checkState
);
840 test("Chain slideUp slideDown with easing and callback", function() {
841 jQuery('#slideup div').saveState(jQuery
.support
.shrinkWrapBlocks
).slideUp('fast').slideDown('fast','linear',jQuery
.checkState
);
844 test("Chain slideToggle in", function() {
845 jQuery('#slidetogglein div').saveState(jQuery
.support
.shrinkWrapBlocks
).slideToggle('fast').slideToggle('fast',jQuery
.checkState
);
847 test("Chain slideToggle out", function() {
848 jQuery('#slidetoggleout div').saveState(jQuery
.support
.shrinkWrapBlocks
).slideToggle('fast').slideToggle('fast',jQuery
.checkState
);
851 test("Chain fadeToggle in", function() {
852 jQuery('#fadetogglein div').saveState().fadeToggle('fast').fadeToggle('fast',jQuery
.checkState
);
854 test("Chain fadeToggle out", function() {
855 jQuery('#fadetoggleout div').saveState().fadeToggle('fast').fadeToggle('fast',jQuery
.checkState
);
858 test("Chain fadeTo 0.5 1.0 with easing and callback)", function() {
859 jQuery('#fadeto div').saveState().fadeTo('fast',0.5).fadeTo('fast',1.0,'linear',jQuery
.checkState
);
862 jQuery
.makeTest = function( text
){
863 var elem
= jQuery("<div></div>")
864 .attr("id", "test" + jQuery
.makeTest
.id
++)
869 .appendTo("#fx-tests")
875 jQuery
.makeTest
.id
= 1;
877 test("jQuery.show('fast') doesn't clear radio buttons (bug #1095)", function () {
881 var $checkedtest
= jQuery("#checkedtest");
882 // IE6 was clearing "checked" in jQuery(elem).show("fast");
883 $checkedtest
.hide().show("fast", function() {
884 ok( !! jQuery(":radio:first", $checkedtest
).attr("checked"), "Check first radio still checked." );
885 ok( ! jQuery(":radio:last", $checkedtest
).attr("checked"), "Check last radio still NOT checked." );
886 ok( !! jQuery(":checkbox:first", $checkedtest
).attr("checked"), "Check first checkbox still checked." );
887 ok( ! jQuery(":checkbox:last", $checkedtest
).attr("checked"), "Check last checkbox still NOT checked." );
892 test("animate with per-property easing", function(){
897 var _test1_called
= false;
898 var _test2_called
= false;
899 var _default_test_called
= false;
901 jQuery
.easing
['_test1'] = function() {
902 _test1_called
= true;
905 jQuery
.easing
['_test2'] = function() {
906 _test2_called
= true;
909 jQuery
.easing
['_default_test'] = function() {
910 _default_test_called
= true;
913 jQuery({a
:0,b
:0,c
:0}).animate({
917 }, 400, '_default_test', function(){
919 ok(_test1_called
, "Easing function (1) called");
920 ok(_test2_called
, "Easing function (2) called");
921 ok(_default_test_called
, "Easing function (_default) called");
926 test("hide hidden elements (bug #7141)", function() {
930 var div
= jQuery("<div style='display:none'></div>").appendTo("#main");
931 equals( div
.css("display"), "none", "Element is hidden by default" );
933 ok( !jQuery
._data(div
, "olddisplay"), "olddisplay is undefined after hiding an already-hidden element" );
935 equals( div
.css("display"), "block", "Show a double-hidden element" );
940 test("hide hidden elements, with animation (bug #7141)", function() {
945 var div
= jQuery("<div style='display:none'></div>").appendTo("#main");
946 equals( div
.css("display"), "none", "Element is hidden by default" );
947 div
.hide(1, function () {
948 ok( !jQuery
._data(div
, "olddisplay"), "olddisplay is undefined after hiding an already-hidden element" );
949 div
.show(1, function () {
950 equals( div
.css("display"), "block", "Show a double-hidden element" );
956 test("animate unit-less properties (#4966)", 2, function() {
958 var div
= jQuery( "<div style='z-index: 0; position: absolute;'></div>" ).appendTo( "#main" );
959 equal( div
.css( "z-index" ), "0", "z-index is 0" );
960 div
.animate({ zIndex
: 2 }, function() {
961 equal( div
.css( "z-index" ), "2", "z-index is 2" );