diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-07-29 15:02:36 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-07-29 15:02:36 -0400 |
commit | 64faf2da0a93a323172f87183112dd262c4c4fe8 (patch) | |
tree | 31b4fef89218e684f3426f9fa23397ed0abb0968 /tests | |
parent | 749a6a56677fe29d2bf777d79811ce8bdd1b5fad (diff) | |
download | jquery-ui-64faf2da0a93a323172f87183112dd262c4c4fe8.tar.gz jquery-ui-64faf2da0a93a323172f87183112dd262c4c4fe8.zip |
Selectmenu: Don't check menu width in width option tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/selectmenu/selectmenu_options.js | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/unit/selectmenu/selectmenu_options.js b/tests/unit/selectmenu/selectmenu_options.js index ae847f5e1..049ba6ba2 100644 --- a/tests/unit/selectmenu/selectmenu_options.js +++ b/tests/unit/selectmenu/selectmenu_options.js @@ -87,43 +87,31 @@ test( "CSS styles", function() { test( "width", function() { - expect( 9 ); + expect( 5 ); var button, menu, element = $( "#speed" ); element.selectmenu(); button = element.selectmenu( "widget" ); - menu = element.selectmenu( "menuWidget" ); equal( button.outerWidth(), element.outerWidth(), "button width auto" ); - element.selectmenu( "open" ); - closeEnough( menu.outerWidth(), element.outerWidth(), 2, "menu width auto" ); element.outerWidth( 100 ); element.selectmenu( "refresh" ); - equal( button.outerWidth(), 100, "button width set by CSS" ); - element.selectmenu( "open" ); - equal( menu.outerWidth(), 100, "menu width set by CSS" ); element .width( "" ) .selectmenu( "option", "width", 100 ) .selectmenu( "refresh" ); - equal( button.outerWidth(), 100, "button width set by JS option" ); - element.selectmenu( "open" ); - equal( menu.outerWidth(), 100, "menu width set by JS option" ); element .append( $( "<option>", { text: "Option with a little longer text" } ) ) .selectmenu( "option", "width", "" ) .selectmenu( "refresh" ); - equal( button.outerWidth(), element.outerWidth(), "button width with long option" ); - element.selectmenu( "open" ); - ok( menu.outerWidth() >= element.outerWidth(), "menu width with long option" ); element.parent().outerWidth( 300 ); element |