diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-02-21 19:49:09 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-02-21 19:49:09 +0100 |
commit | 60a5f1a4995a9d8972a4719f91e32b50a8228e3c (patch) | |
tree | 7f7858081de3217fdd5577d28eba25eaa2fb1eae /tests/visual/selectmenu | |
parent | 5f2252c951382e2e8689d58594f7fa036cc898aa (diff) | |
download | jquery-ui-60a5f1a4995a9d8972a4719f91e32b50a8228e3c.tar.gz jquery-ui-60a5f1a4995a9d8972a4719f91e32b50a8228e3c.zip |
Selectmenu: Fix whitespace in visual test
Diffstat (limited to 'tests/visual/selectmenu')
-rw-r--r-- | tests/visual/selectmenu/selectmenu.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/visual/selectmenu/selectmenu.html b/tests/visual/selectmenu/selectmenu.html index e6041ea67..1c8c75708 100644 --- a/tests/visual/selectmenu/selectmenu.html +++ b/tests/visual/selectmenu/selectmenu.html @@ -108,17 +108,17 @@ /* empty */ $(".empty select").selectmenu(); - + /* width */ $("#width_auto1, #width_auto2").selectmenu(); - + $("#width_js1, #width_js2").selectmenu({ width: 200 }); - + var widthMenu = $("#width_menu").selectmenu(); widthMenu.selectmenu("menuWidget").addClass("width-menu"); - + }); </script> <style> @@ -128,7 +128,7 @@ select { width: 200px; } .ui-selectmenu-button { display: block; margin-bottom: 1em;} - + /* width */ .width-menu { width: 196px; } </style> @@ -267,7 +267,7 @@ <option>Width test 2</option> <option>Width test 3 Width test 3 Width test 3</option> </select> - + <label for="width_js1">Width set by JS</label> <select name="width_js1" id="width_js1"> <option>Width test 1</option> @@ -280,14 +280,14 @@ <option>Width test 1</option> <option>Width test 2</option> <option>Width test 3 Width test 3 Width test 3</option> - </select> + </select> <label for="width_menu">Width set by JS with long option</label> <select name="width_menu" id="width_menu"> <option>Width test 1</option> <option>Width test 2</option> <option>Width test 3 Width test 3 Width test 3</option> - </select> + </select> </fieldset> </form> |