aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/testsuite.css
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2016-01-11 02:26:55 -0500
committerTimmy Willison <timmywillisn@gmail.com>2016-01-13 16:05:09 -0500
commitdba93f79c405373ec3a492fd0a4bf89b3136a6e6 (patch)
tree49aca78a21bb34ebb7d834a270c090b9de91522a /test/data/testsuite.css
parenta268f5225cad9ab380494e61a10105cc9eb107e7 (diff)
downloadjquery-dba93f79c405373ec3a492fd0a4bf89b3136a6e6.tar.gz
jquery-dba93f79c405373ec3a492fd0a4bf89b3136a6e6.zip
CSS: Restore cascade-override behavior in .show
Fixes gh-2654 Fixes gh-2308 Close gh-2810 Ref 86419b10bfa5e3b71a7d416288ab806d47a31d1f
Diffstat (limited to 'test/data/testsuite.css')
-rw-r--r--test/data/testsuite.css14
1 files changed, 5 insertions, 9 deletions
diff --git a/test/data/testsuite.css b/test/data/testsuite.css
index 50619b98d..253bea998 100644
--- a/test/data/testsuite.css
+++ b/test/data/testsuite.css
@@ -20,10 +20,6 @@ div#fx-tests div.overflow {
overflow: visible;
}
-div.inline {
- display: inline;
-}
-
div.autoheight {
height: auto;
}
@@ -68,11 +64,6 @@ div.noopacity {
opacity: 0;
}
-div.hidden,
-span.hidden {
- display: none;
-}
-
div#fx-tests div.widewidth {
background-repeat: repeat-x;
}
@@ -134,3 +125,8 @@ section { background:#f0f; display:block; }
#span-14824 { display: block; }
#display { display: list-item !important; }
+
+.block { display: block; }
+.inline { display: inline; }
+.list-item { display: list-item; }
+.hidden, .none { display: none; }