Getting weird results for font size tests across platforms - easier to test something...
authorjeresig <jeresig@gmail.com>
Fri, 15 Oct 2010 01:15:20 +0000 (21:15 -0400)
committerjeresig <jeresig@gmail.com>
Fri, 15 Oct 2010 01:15:20 +0000 (21:15 -0400)
test/unit/css.js

index 4921391..16183a8 100644 (file)
@@ -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" );