diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2016-01-11 02:26:55 -0500 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2016-01-13 16:05:09 -0500 |
commit | dba93f79c405373ec3a492fd0a4bf89b3136a6e6 (patch) | |
tree | 49aca78a21bb34ebb7d834a270c090b9de91522a /test/data/testsuite.css | |
parent | a268f5225cad9ab380494e61a10105cc9eb107e7 (diff) | |
download | jquery-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.css | 14 |
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; } |