Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 .test_ok {
2 color: #0d0;
3 display: none;
4 }
6 .test_not_ok {
7 color: red;
8 display: block;
9 }
11 .test_todo {
12 /* color: orange; */
13 display: block;
14 }
16 .test_ok, .test_not_ok, .test_todo {
17 border-bottom-width: 2px;
18 border-bottom-style: solid;
19 border-bottom-color: black;
20 }
22 .all_pass {
23 background-color: #0d0;
24 }
26 .some_fail {
27 background-color: red;
28 }
30 .todo_only {
31 background-color: orange;
32 }
34 .tests_report {
35 border-width: 2px;
36 border-style: solid;
37 width: 20em;
38 display: table;
39 }