diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-05-08 15:27:54 -0700 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-05-12 10:06:42 -0400 |
commit | dd816dbac19d8a83f9b1e9c7d09bc0db436a74b0 (patch) | |
tree | 7d50094c1507bb6a79f33ff4c69d479525d33114 /test | |
parent | fe2a584ed662ad15e0cfb2e806652e2a8724f0c8 (diff) | |
download | jquery-dd816dbac19d8a83f9b1e9c7d09bc0db436a74b0.tar.gz jquery-dd816dbac19d8a83f9b1e9c7d09bc0db436a74b0.zip |
CSS: fix :visible/:hidden selectors for inline element w/ content
- Reverts behavior from 10399dd, which we never released.
BR and inline elements are considered visible.
- The possibility of dropping .offsetWidth and .offsetHeight
was debunked by this perf:
http://jsperf.com/visible-hidden-and-getclientrects
Fixes gh-2227
Close gh-2281
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/css.js | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index 9e7949f70..a673b4e51 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -982,9 +982,9 @@ test( "css opacity consistency across browsers (#12685)", function() { }); test( ":visible/:hidden selectors", function() { - expect( 16 ); + expect( 18 ); - var $newDiv, $br, $table; + var $div, $br, $table, $a; ok( jQuery("#nothiddendiv").is(":visible"), "Modifying CSS display: Assert element is visible" ); jQuery("#nothiddendiv").css({ display: "none" }); @@ -1000,11 +1000,14 @@ test( ":visible/:hidden selectors", function() { jQuery("#nothiddendiv").css("display", "block"); ok( jQuery("#nothiddendiv").is(":visible"), "Modified CSS display: Assert element is visible"); - ok( !jQuery("#siblingspan").is(":visible"), "Span with no content not visible (#13132)" ); - $newDiv = jQuery("<div><span></span></div>").appendTo("#qunit-fixture"); - equal( $newDiv.find(":visible").length, 0, "Span with no content not visible (#13132)" ); - $br = jQuery("<br/>").appendTo("#qunit-fixture"); - ok( !$br.is(":visible"), "br element not visible (#10406)"); + ok( jQuery( "#siblingspan" ).is( ":visible" ), "Span with no content is visible" ); + $div = jQuery( "<div><span></span></div>" ).appendTo( "#qunit-fixture" ); + equal( $div.find( ":visible" ).length, 1, "Span with no content is visible" ); + $div.css( { width: 0, height: 0, overflow: "hidden" } ); + ok( $div.is( ":visible" ), "Div with width and height of 0 is still visible (gh-2227)" ); + + $br = jQuery( "<br/>" ).appendTo( "#qunit-fixture" ); + ok( $br.is( ":visible" ), "br element is visible" ); $table = jQuery("#table"); $table.html("<tr><td style='display:none'>cell</td><td>cell</td></tr>"); @@ -1015,6 +1018,9 @@ test( ":visible/:hidden selectors", function() { t( "Is Visible", "#qunit-fixture div:visible:lt(2)", ["foo", "nothiddendiv"] ); t( "Is Not Hidden", "#qunit-fixture:hidden", [] ); t( "Is Hidden", "#form input:hidden", ["hidden1","hidden2"] ); + + $a = jQuery( "<a href='#'><h1>Header</h1></a>" ).appendTo( "#qunit-fixture" ); + ok( $a.is( ":visible" ), "Anchor tag with flow content is visible (gh-2227)" ); }); test( "Keep the last style if the new one isn't recognized by the browser (#14836)", function() { |