X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcss.js;h=b6063b70cc906caa54386318db95104fd6fc08b0;hb=f3d610e06499192509f482dbb72a1edf861827e0;hp=3131af38e90f79d4d9247e14aa26639d8fdbb064;hpb=2ae872c594790c4b935a1d7eabdf8b8212fd3c3f;p=jquery.git diff --git a/test/unit/css.js b/test/unit/css.js index 3131af3..b6063b7 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -1,9 +1,9 @@ module("css"); test("css(String|Hash)", function() { - expect(33); + expect(34); - equals( jQuery('#main').css("display"), 'none', 'Check for css property "display"'); + equals( jQuery('#main').css("display"), 'block', 'Check for css property "display"'); ok( jQuery('#nothiddendiv').is(':visible'), 'Modifying CSS display: Assert element is visible'); jQuery('#nothiddendiv').css({display: 'none'}); @@ -19,6 +19,8 @@ test("css(String|Hash)", function() { equals( parseFloat(jQuery('#nothiddendiv').css('width')), width, 'Test negative width ignored') equals( parseFloat(jQuery('#nothiddendiv').css('height')), height, 'Test negative height ignored') + equals( jQuery('
').css('display'), 'none', 'Styles on disconnected nodes'); + jQuery('#floatTest').css({'float': 'right'}); equals( jQuery('#floatTest').css('float'), 'right', 'Modified CSS float using "float": Assert float is right'); jQuery('#floatTest').css({'font-size': '30px'}); @@ -111,8 +113,8 @@ test("css(String, Object)", function() { // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); - j.css("padding-left", "1px"); - equals( j.css("padding-left"), "1px", "Check node,textnode,comment css works" ); + j.css("fontSize", "1px"); + equals( j.css("fontSize"), "1px", "Check node,textnode,comment css works" ); // opera sometimes doesn't update 'display' correctly, see #2037 jQuery("#t2037")[0].innerHTML = jQuery("#t2037")[0].innerHTML @@ -136,7 +138,7 @@ test("css(String, Object)", function() { ok( success, "Setting RGBA values does not throw Error" ); }); -if(jQuery.browser.msie) { +if ( !jQuery.support.opacity ) { test("css(String, Object) for MSIE", function() { // for #1438, IE throws JS error when filter exists but doesn't have opacity in it jQuery('#foo').css("filter", "progid:DXImageTransform.Microsoft.Chroma(color='red');"); @@ -286,3 +288,16 @@ test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", funct ok( !! jQuery(":checkbox:first", $checkedtest).attr("checked"), "Check first checkbox still checked." ); ok( ! jQuery(":checkbox:last", $checkedtest).attr("checked"), "Check last checkbox still NOT checked." ); }); + +test(":visible selector works properly on table elements (bug #4512)", function () { + expect(1); + + jQuery('#table').html('cellcell'); + equals(jQuery('#table td:visible').length, 1, "hidden cell is not perceived as visible"); +}); + +test(":visible selector works properly on children with a hidden parent (bug #4512)", function () { + expect(1); + jQuery('#table').css('display', 'none').html('cellcell'); + equals(jQuery('#table td:visible').length, 0, "hidden cell children not perceived as visible"); +});