Home | History | Annotate | Download | only in src
      1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file. */
      4 
      5 unittest-test-runner {
      6   display: block;
      7 }
      8 test-case {
      9   display: block;
     10   font-size: 90%;
     11 }
     12 
     13 unittest-test-runner > title {
     14   border-bottom: 1px solid black;
     15   display: block;
     16   font-family: sans-serif;
     17   margin: auto;
     18   width: 100%;
     19 }
     20 
     21 test-case > title {
     22   display: block;
     23   font-family: monospace;
     24 }
     25 
     26 test-case-error,
     27 test-case-output {
     28   display: block;
     29   margin-bottom: 16px;
     30   margin-left: 16px;
     31 }
     32 test-case-stack {
     33   display: block;
     34   font-family: monospace;
     35   overflow-x: auto;
     36   white-space: pre;
     37 }
     38 .unittest-green {
     39   color: darkgreen;
     40 }
     41 
     42 .unittest-yellow {
     43   color: orange;
     44 }
     45 
     46 .unittest-red {
     47   color: darkRed;
     48   font-weight: bold;
     49 }
     50 
     51