()
| 865 | testStyle = jQuery.makeTest( "Overflow and Display (inline style)" ) |
| 866 | .css( { overflow: "visible", display: "inline" } ), |
| 867 | done = function() { |
| 868 | assert.equal( jQuery.css( this, "overflow" ), "visible", "Overflow should be 'visible'" ); |
| 869 | assert.equal( jQuery.css( this, "display" ), "inline", "Display should be 'inline'" ); |
| 870 | }; |
| 871 | |
| 872 | testClass.add( testStyle ) |
| 873 | .addClass( "widewidth" ) |
no outgoing calls