testsuite.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* for testing opacity set in styles in IE */
  2. ol#empty { opacity: 0; filter:Alpha(opacity=0) progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffff0000', EndColorStr='#ffffffff'); }
  3. div#fx-tests h4 {
  4. background: red;
  5. }
  6. div#fx-tests h4.pass {
  7. background: green;
  8. }
  9. div#fx-tests div.box {
  10. background: red;
  11. overflow: hidden;
  12. border: 2px solid #000;
  13. }
  14. div#fx-tests div.overflow {
  15. overflow: visible;
  16. }
  17. div.inline {
  18. display: inline;
  19. }
  20. div.autoheight {
  21. height: auto;
  22. }
  23. div.autowidth {
  24. width: auto;
  25. }
  26. div.autoopacity {
  27. opacity: auto;
  28. }
  29. div.largewidth {
  30. width: 100px;
  31. }
  32. div.largeheight {
  33. height: 100px;
  34. }
  35. div.largeopacity {
  36. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  37. }
  38. div.medwidth {
  39. width: 50px;
  40. }
  41. div.medheight {
  42. height: 50px;
  43. }
  44. div.medopacity {
  45. opacity: 0.5;
  46. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  47. }
  48. div.nowidth {
  49. width: 0px;
  50. }
  51. div.noheight {
  52. height: 0px;
  53. }
  54. div.noopacity {
  55. opacity: 0;
  56. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  57. }
  58. div.hidden {
  59. display: none;
  60. }
  61. div#fx-tests div.widewidth {
  62. background-repeat: repeat-x;
  63. }
  64. div#fx-tests div.wideheight {
  65. background-repeat: repeat-y;
  66. }
  67. div#fx-tests div.widewidth.wideheight {
  68. background-repeat: repeat;
  69. }
  70. div#fx-tests div.noback {
  71. background-image: none;
  72. }
  73. div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
  74. div.chain div { position: absolute; top: 0px; left: 0px; }
  75. div.chain.test { background: red; }
  76. div.chain.test div { background: green; }
  77. div.chain.out { background: green; }
  78. div.chain.out div { background: red; display: none; }
  79. /* tests to ensure jQuery can determine the native display mode of elements
  80. that have been set as display: none in stylesheets */
  81. div#show-tests * { display: none; }
  82. #nothiddendiv { font-size: 16px; }
  83. #nothiddendivchild.em { font-size: 2em; }
  84. #nothiddendivchild.prct { font-size: 150%; }
  85. /* For testing type on vml in IE #7071 */
  86. v\:oval { behavior:url(#default#VML); display:inline-block; }
  87. /* 8099 changes to default styles are read correctly */
  88. tt { display: none; }
  89. sup { display: none; }
  90. dfn { display: none; }
  91. /* #9239 Attach a background to the body( avoid crashes in removing the test element in support ) */
  92. body, div { background: url(http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif) no-repeat -1000px 0; }
  93. /* #6652 REMOVE FILTER:ALPHA(OPACITY=100) AFTER ANIMATION */
  94. #t6652 div { filter: alpha(opacity=50); }
  95. /* #10501 */
  96. section { background:#f0f; display:block; }