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

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

Issue 12225131: [cc] Initial checkin of cc-frame-viewer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/cc-frame-viewer/src/base/unittest.css
diff --git a/tools/cc-frame-viewer/src/base/unittest.css b/tools/cc-frame-viewer/src/base/unittest.css
new file mode 100644
index 0000000000000000000000000000000000000000..f6ec7f5f2c6672eed89a4c03d2100df3c23060fc
--- /dev/null
+++ b/tools/cc-frame-viewer/src/base/unittest.css
@@ -0,0 +1,50 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+unittest-test-runner {
+ display: block;
+}
+test-case {
+ display: block;
+ font-size: 90%;
+}
+
+unittest-test-runner > title {
+ border-bottom: 1px solid black;
+ display: block;
+ font-family: sans-serif;
+ margin: auto;
+ width: 100%;
+}
+
+test-case > title {
+ display: block;
+ font-family: monospace;
+}
+
+test-case-error,
+test-case-output {
+ display: block;
+ margin-bottom: 16px;
+ margin-left: 16px;
+}
+test-case-stack {
+ display: block;
+ font-family: monospace;
+ overflow-x: auto;
+ white-space: pre;
+}
+.unittest-green {
+ color: darkgreen;
+}
+
+.unittest-yellow {
+ color: orange;
+}
+
+.unittest-red {
+ color: darkRed;
+ font-weight: bold;
+}
+
« 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