diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-28 10:41:05 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-28 10:41:05 +0100 |
commit | 37fda49e3ca65a1fa5f1c6f6a531ec5896c053b1 (patch) | |
tree | 81e14c94cf8ec2edd291000f26bafedbed9941e8 | |
parent | 5143b7f672bc668963cce7dcf5dd4e2970aad8e5 (diff) | |
download | jquery-ui-37fda49e3ca65a1fa5f1c6f6a531ec5896c053b1.tar.gz jquery-ui-37fda49e3ca65a1fa5f1c6f6a531ec5896c053b1.zip |
Accordion: Fix testsuite overflow issue in IE7.
-rw-r--r-- | tests/unit/accordion/accordion.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/accordion/accordion.html b/tests/unit/accordion/accordion.html index 4f40091bc..67928fd5d 100644 --- a/tests/unit/accordion/accordion.html +++ b/tests/unit/accordion/accordion.html @@ -35,6 +35,10 @@ font-size: 12px; line-height: 15px; } + /* avoid IE7 oscillating between overflow visible and scroll values */ + #list1 > div { + overflow: visible; + } </style> </head> <body> |