From 0d2e4796dc97d3f9d6b5c1977e883b3ddf2f53d9 Mon Sep 17 00:00:00 2001 From: rwldrn Date: Mon, 31 Jan 2011 14:31:15 -0500 Subject: Bug #8099 - Always restore to correct display value based on element's expected default display --- test/data/testsuite.css | 3 +++ test/unit/effects.js | 12 ++++++++++++ 2 files changed, 15 insertions(+) (limited to 'test') diff --git a/test/data/testsuite.css b/test/data/testsuite.css index cffaaa46a..9ca2cd748 100644 --- a/test/data/testsuite.css +++ b/test/data/testsuite.css @@ -109,3 +109,6 @@ div#show-tests * { display: none; } #nothiddendiv { font-size: 16px; } #nothiddendivchild.em { font-size: 2em; } #nothiddendivchild.prct { font-size: 150%; } + +/* 8099 changes to default styles are read correctly */ +tt { display: none; } diff --git a/test/unit/effects.js b/test/unit/effects.js index b1dd28840..ce9c16c8c 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -169,6 +169,18 @@ test("Persist correct display value", function() { }); }); +test("show() resolves correct default display #8099", function() { + expect(3); + var bug8099 = jQuery("").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(); -- cgit v1.2.3