diff options
author | Anton M <obhvsbypqghgc@gmail.com> | 2011-02-15 22:30:34 +0100 |
---|---|---|
committer | Anton M <obhvsbypqghgc@gmail.com> | 2011-02-15 22:30:34 +0100 |
commit | faa6fe32f72900d7b31000caead2794a8346f6d8 (patch) | |
tree | 2ddbef1e755e19062863929d9a041e5ee600a730 /test/unit/effects.js | |
parent | 6b08d88d04f4a41849753999e6e18126895086d0 (diff) | |
download | jquery-faa6fe32f72900d7b31000caead2794a8346f6d8.tar.gz jquery-faa6fe32f72900d7b31000caead2794a8346f6d8.zip |
Revert "Merge branch '8099' of https://github.com/rwldrn/jquery into rwldrn-8099"
This reverts commit bb9408516aa0fc8892f4e07a99b1a47bce06081b, reversing
changes made to 3ad8dd242acec1066f43a9349f4c1a352680d37b.
Conflicts:
src/effects.js
Diffstat (limited to 'test/unit/effects.js')
-rw-r--r-- | test/unit/effects.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index 7da814343..a07c076d7 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -162,18 +162,6 @@ test("Persist correct display value", function() { }); }); -test("show() resolves correct default display #8099", function() { - expect(3); - var bug8099 = jQuery("<tt/>").appendTo("#main"); - - equals( bug8099.css("display"), "none", "default display override for all tt" ); - equals( bug8099.show().css("display"), "inline", "Correctly resolves display:inline" ); - - bug8099.remove(); - - equals( jQuery("#foo").hide().show().css("display"), "block", "Correctly resolves display:block after hide/show" ); -}); - test("animate(Hash, Object, Function)", function() { expect(1); stop(); |