});
test("show() resolves correct default display #10227", 4, function() {
- var html = jQuery( document.documentElement ),
-
- // In new browsers default display for HTML element is "block"
- // for older browsers display equals "inline"
- htmlDefaultDisplay = html.css( "display" ),
-
+ var htmlDisplay,
+ html = jQuery( document.documentElement ),
body = jQuery( "body" );
body.append( "<p class='ddisplay'>a<style>body{display:none}</style></p>" );
equal( html.css("display"), "none", "Initial display for html element: none" );
html.show();
- equal( html.css( "display" ), htmlDefaultDisplay, "Correct display for html element: " + htmlDefaultDisplay );
+ htmlDisplay = html.css( "display" );
+
+ // Check for "inline" value needed for older browsers
+ ok( "inline" === htmlDisplay || "block" === htmlDisplay, "Correct display for html element" );
jQuery._removeData( body[ 0 ] );
jQuery._removeData( html[ 0 ] );