Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Side by Side Diff: tools/cc-frame-viewer/src/base/unittest.css

Issue 15736032: Remove old cc-frame-viewer now that it is upstreamed into trace_viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/cc-frame-viewer/src/base/rect2.js ('k') | tools/cc-frame-viewer/src/base/unittest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
OLDNEW
« no previous file with comments | « tools/cc-frame-viewer/src/base/rect2.js ('k') | tools/cc-frame-viewer/src/base/unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698