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 5unittest-test-runner { 6 display: block; 7} 8test-case { 9 display: block; 10 font-size: 90%; 11} 12 13unittest-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 21test-case > title { 22 display: block; 23 font-family: monospace; 24} 25 26test-case-error, 27test-case-output { 28 display: block; 29 margin-left: 16px; 30 margin-bottom: 16px; 31} 32test-case-stack { 33 overflow-x: auto; 34 display: block; 35 white-space: pre; 36 font-family: monospace; 37} 38.unittest-green { 39 color: darkgreen; 40} 41 42.unittest-yellow { 43 color: orange; 44} 45 46.unittest-red { 47 color: darkRed; 48} 49 50