testsuite.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. body, div, h1 { font-family: 'trebuchet ms', verdana, arial; margin: 0; padding: 0 }
  2. body {font-size: 10pt; }
  3. h1 { padding: 15px; font-size: large; background-color: #06b; color: white; }
  4. h1 a { color: white; }
  5. h2 { padding: 10px; background-color: #eee; color: black; margin: 0; font-size: small; font-weight: normal }
  6. .pass { color: green; }
  7. .fail { color: red; }
  8. p.result { margin-left: 1em; }
  9. #banner { height: 2em; border-bottom: 1px solid white; }
  10. h2.pass { background-color: green; }
  11. h2.fail { background-color: red; }
  12. div.testrunner-toolbar { background: #eee; border-top: 1px solid black; padding: 10px; }
  13. ol#tests > li > strong { cursor:pointer; }
  14. div#fx-tests h4 {
  15. background: red;
  16. }
  17. div#fx-tests h4.pass {
  18. background: green;
  19. }
  20. div#fx-tests div.box {
  21. background: red url(data/cow.jpg) no-repeat;
  22. overflow: hidden;
  23. border: 2px solid #000;
  24. }
  25. div#fx-tests div.overflow {
  26. overflow: visible;
  27. }
  28. div.inline {
  29. display: inline;
  30. }
  31. div.autoheight {
  32. height: auto;
  33. }
  34. div.autowidth {
  35. width: auto;
  36. }
  37. div.autoopacity {
  38. opacity: auto;
  39. }
  40. div.largewidth {
  41. width: 100px;
  42. }
  43. div.largeheight {
  44. height: 100px;
  45. }
  46. div.largeopacity {
  47. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  48. }
  49. div.medwidth {
  50. width: 50px;
  51. }
  52. div.medheight {
  53. height: 50px;
  54. }
  55. div.medopacity {
  56. opacity: 0.5;
  57. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  58. }
  59. div.nowidth {
  60. width: 0px;
  61. }
  62. div.noheight {
  63. height: 0px;
  64. }
  65. div.noopacity {
  66. opacity: 0;
  67. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  68. }
  69. div.hidden {
  70. display: none;
  71. }
  72. div#fx-tests div.widewidth {
  73. background-repeat: repeat-x;
  74. }
  75. div#fx-tests div.wideheight {
  76. background-repeat: repeat-y;
  77. }
  78. div#fx-tests div.widewidth.wideheight {
  79. background-repeat: repeat;
  80. }
  81. div#fx-tests div.noback {
  82. background-image: none;
  83. }
  84. div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; }
  85. div.chain div { position: absolute; top: 0px; left: 0px; }
  86. div.chain.test { background: red; }
  87. div.chain.test div { background: green; }
  88. div.chain.out { background: green; }
  89. div.chain.out div { background: red; display: none; }
  90. div#show-tests * { display: none; }