X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fcss.js;h=16183a8987820d7f9ea6e0ce3123402f99fd3c38;hb=c8e5d0bca04daebd335a8854e93519175893d4d0;hp=4921391017f3d9f55bebf89042dbe4fc1031a259;hpb=80a4178af9b12e6617bfcec818c538dfe08d3791;p=jquery.git diff --git a/test/unit/css.js b/test/unit/css.js index 4921391..16183a8 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -113,9 +113,8 @@ test("css(String, Object)", function() { // using contents will get comments regular, text, and comment nodes var j = jQuery("#nonnodes").contents(); - j.css("fontSize", "15px"); - equals( j.css("fontSize"), "15px", "Check node,textnode,comment css works" ); - + j.css("overflow", "hidden"); + equals( j.css("overflow"), "hidden", "Check node,textnode,comment css works" ); // opera sometimes doesn't update 'display' correctly, see #2037 jQuery("#t2037")[0].innerHTML = jQuery("#t2037")[0].innerHTML equals( jQuery("#t2037 .hidden").css("display"), "none", "Make sure browser thinks it is hidden" );