aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/testsuite.css
diff options
context:
space:
mode:
authorTimo Tijhof <krinklemail@gmail.com>2012-10-31 18:26:43 +0100
committerRichard Gibson <richard.gibson@gmail.com>2012-10-31 16:41:31 -0400
commit6e75fe5f1945893cce3ced481e586d8ad6cbfa1d (patch)
treec91a9b5e6edd72aa4312562ae42d71e588b40a52 /test/data/testsuite.css
parente8f91514a6f353e85d8117998087903dc7331210 (diff)
downloadjquery-6e75fe5f1945893cce3ced481e586d8ad6cbfa1d.tar.gz
jquery-6e75fe5f1945893cce3ced481e586d8ad6cbfa1d.zip
No ticket: fix effects test failure in IE6. Close gh-1012.
Diffstat (limited to 'test/data/testsuite.css')
-rw-r--r--test/data/testsuite.css36
1 files changed, 29 insertions, 7 deletions
diff --git a/test/data/testsuite.css b/test/data/testsuite.css
index aae0d8d96..6bb3a5ded 100644
--- a/test/data/testsuite.css
+++ b/test/data/testsuite.css
@@ -1,5 +1,8 @@
/* for testing opacity set in styles in IE */
-ol#empty { opacity: 0; filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff'); }
+ol#empty {
+ opacity: 0;
+ filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff');
+}
div#fx-tests h4 {
background: red;
@@ -93,14 +96,33 @@ div#fx-tests div.noback {
background-image: none;
}
-div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
-div.chain div { position: absolute; top: 0px; left: 0px; }
+.chain-test,
+.chain-test div {
+ width: 100px;
+ height: 20px;
+ position: relative;
+ float: left;
+}
+.chain-test div {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
-div.chain.test { background: red; }
-div.chain.test div { background: green; }
+.chain-test {
+ background: red;
+}
+.chain-test div {
+ background: green;
+}
-div.chain.out { background: green; }
-div.chain.out div { background: red; display: none; }
+.chain-test-out {
+ background: green;
+}
+.chain-test-out div {
+ background: red;
+ display: none;
+}
/* tests to ensure jQuery can determine the native display mode of elements
that have been set as display: none in stylesheets */