diff options
author | rwldrn <waldron.rick@gmail.com> | 2010-11-09 18:06:33 -0500 |
---|---|---|
committer | rwldrn <waldron.rick@gmail.com> | 2010-11-09 18:06:33 -0500 |
commit | 118c8c4600b62d6de2b0248ae27626da74dcf5b2 (patch) | |
tree | 1bd88f4a5e06e890226d7d1850f0cc7aefbf9cc2 /test/unit | |
parent | a64dc0405064d68c7b7cd0f0fc8ea60086cbcd21 (diff) | |
download | jquery-118c8c4600b62d6de2b0248ae27626da74dcf5b2.tar.gz jquery-118c8c4600b62d6de2b0248ae27626da74dcf5b2.zip |
Fixes #7397; 4 supporting unit tests
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/effects.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index 74b336f1f..aca926384 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -130,6 +130,41 @@ test("show(Number) - other displays", function() { }); }); + + +// Supports #7397 +test("Persist correct display value", function() { + expect(4); + QUnit.reset(); + stop(); + + // #show-tests * is set display: none in CSS + jQuery("#main").append('<div id="show-tests"><span style="position:absolute;"></span></div>'); + + var $span = jQuery("#show-tests span"), + orig = $span.css("display"), + num = 0; + + equal(orig, "none", "Expecting to start at display: none"); + + $span.text('Saving...').fadeIn(100, function() { + + equal($span.css("display"), "block", "Expecting display: block"); + + $span.text('Saved!').fadeOut(100, function () { + + equal($span.css("display"), "none", "Expecting display: none"); + + $span.text('Saving...').fadeIn(100, function() { + + equal($span.css("display"), "block", "Expecting display: block"); + + start(); + }); + }); + }); +}); + test("animate(Hash, Object, Function)", function() { expect(1); stop(); |