OLD | NEW |
(Empty) | |
| 1 html { |
| 2 font-family:DejaVu Sans, Bitstream Vera Sans, Arial, Sans; |
| 3 } |
| 4 |
| 5 #log .warning, |
| 6 #log .warning a { |
| 7 color: black; |
| 8 background: yellow; |
| 9 } |
| 10 |
| 11 #log .error, |
| 12 #log .error a { |
| 13 color: white; |
| 14 background: red; |
| 15 } |
| 16 |
| 17 #log pre { |
| 18 border: 1px solid black; |
| 19 padding: 1em; |
| 20 } |
| 21 |
| 22 section#summary { |
| 23 margin-bottom:1em; |
| 24 } |
| 25 |
| 26 table#results { |
| 27 border-collapse:collapse; |
| 28 table-layout:fixed; |
| 29 width:100%; |
| 30 } |
| 31 |
| 32 table#results th:first-child, |
| 33 table#results td:first-child { |
| 34 width:4em; |
| 35 } |
| 36 |
| 37 table#results th:last-child, |
| 38 table#results td:last-child { |
| 39 width:50%; |
| 40 } |
| 41 |
| 42 table#results.assertions th:last-child, |
| 43 table#results.assertions td:last-child { |
| 44 width:35%; |
| 45 } |
| 46 |
| 47 table#results th { |
| 48 padding:0; |
| 49 padding-bottom:0.5em; |
| 50 border-bottom:medium solid black; |
| 51 } |
| 52 |
| 53 table#results td { |
| 54 padding:1em; |
| 55 padding-bottom:0.5em; |
| 56 border-bottom:thin solid black; |
| 57 } |
| 58 |
| 59 tr.pass > td:first-child { |
| 60 color:green; |
| 61 } |
| 62 |
| 63 tr.fail > td:first-child { |
| 64 color:red; |
| 65 } |
| 66 |
| 67 tr.timeout > td:first-child { |
| 68 color:red; |
| 69 } |
| 70 |
| 71 tr.notrun > td:first-child { |
| 72 color:blue; |
| 73 } |
| 74 |
| 75 .pass > td:first-child, .fail > td:first-child, .timeout > td:first-child, .notr
un > td:first-child { |
| 76 font-variant:small-caps; |
| 77 } |
| 78 |
| 79 table#results span { |
| 80 display:block; |
| 81 } |
| 82 |
| 83 table#results span.expected { |
| 84 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace; |
| 85 white-space:pre; |
| 86 } |
| 87 |
| 88 table#results span.actual { |
| 89 font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace; |
| 90 white-space:pre; |
| 91 } |
| 92 |
| 93 span.ok { |
| 94 color:green; |
| 95 } |
| 96 |
| 97 tr.error { |
| 98 color:red; |
| 99 } |
| 100 |
| 101 span.timeout { |
| 102 color:red; |
| 103 } |
| 104 |
| 105 span.ok, span.timeout, span.error { |
| 106 font-variant:small-caps; |
| 107 } |
OLD | NEW |