diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 10:46:14 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-12-03 10:47:01 -0500 |
commit | 25f16855bab2d4819d50e254d040d318036ad6f1 (patch) | |
tree | 2bfd1e2dc8a934c383b1205513ef0dcaccdb0f0d | |
parent | 44b2180782df6ef3324789324fcf3f98b85784a0 (diff) | |
download | jquery-ui-25f16855bab2d4819d50e254d040d318036ad6f1.tar.gz jquery-ui-25f16855bab2d4819d50e254d040d318036ad6f1.zip |
Menu tests: Fix line height issue in IE7
-rw-r--r-- | tests/unit/menu/menu.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/menu/menu.html b/tests/unit/menu/menu.html index 504d3f3cf..1d87f0a10 100644 --- a/tests/unit/menu/menu.html +++ b/tests/unit/menu/menu.html @@ -35,6 +35,10 @@ } .ui-menu .ui-menu-item { padding: 0; + /* Support: IE7 */ + *display: block; + *float: left; + *clear: left; } #menu3 { height: 250px; |