tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

testharness.css (1575B)


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