diff options
author | Colin Snover <github.com@zetafleet.com> | 2010-12-14 00:37:11 -0600 |
---|---|---|
committer | Colin Snover <github.com@zetafleet.com> | 2010-12-14 00:37:11 -0600 |
commit | efcf1a79212de53b3eb21e4603b2c722befc767b (patch) | |
tree | ec2a5fd0c04b5357283c2be714518cae894ad9ae /test | |
parent | c9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd (diff) | |
parent | a59bb30d0a5ea0d3d73285c6fed0fbe00b23321f (diff) | |
download | jquery-efcf1a79212de53b3eb21e4603b2c722befc767b.tar.gz jquery-efcf1a79212de53b3eb21e4603b2c722befc767b.zip |
Merge branch 'bug_7397' of https://github.com/rwldrn/jquery into rwldrn-bug_7397
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/effects.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index 74b336f1f..969079683 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -130,6 +130,45 @@ test("show(Number) - other displays", function() { }); }); + + +// Supports #7397 +test("Persist correct display value", function() { + expect(3); + QUnit.reset(); + stop(); + + // #show-tests * is set display: none in CSS + jQuery("#main").append('<div id="show-tests"><span style="position:absolute;">foo</span></div>'); + + var $span = jQuery("#show-tests span"), + displayNone = $span.css("display"), + display = '', num = 0; + + $span.show(); + + display = $span.css("display"); + + $span.hide(); + + $span.fadeIn(100, function() { + + equals($span.css("display"), display, "Expecting display: " + display); + + $span.fadeOut(100, function () { + + equals($span.css("display"), displayNone, "Expecting display: " + displayNone); + + $span.fadeIn(100, function() { + + equals($span.css("display"), display, "Expecting display: " + display); + + start(); + }); + }); + }); +}); + test("animate(Hash, Object, Function)", function() { expect(1); stop(); |