summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2011-04-04 05:41:11 +0200
committerMarek Olšák <maraeo@gmail.com>2011-04-06 01:39:09 +0200
commit2e4c7a2fa9a859f3a912260816815b6ee845536c (patch)
tree1593af8c7dc014829e1c225d79753a8423bc4eaa /templates
parent5fbe36a8a2ec578ecc95f89d908f6cc0809ed120 (diff)
core: add new status trap, abort, and crash printed as black lines in summary
To distiguish between 'fail' and unexpected termination. Acked-by: Ian Romanick <ian.d.romanick@intel.com> Acked-by: Eric Anholt <eric@anholt.net> Acked-by: Chad Versace <chad.versace@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/index.css b/templates/index.css
index 3e10f8d28..a89bd1e9f 100644
--- a/templates/index.css
+++ b/templates/index.css
@@ -48,6 +48,12 @@ td {
background-color: #20ff20;
}
+.trap, .abort, .crash {
+ text-align: right;
+ background-color: #000000;
+ color: #ffffff;
+}
+
.skipa {
text-align: right;
background-color: #d0d0d0;
@@ -68,6 +74,12 @@ td {
background-color: #50ff50;
}
+.trapa, .aborta, .crasha {
+ text-align: right;
+ background-color: #141414;
+ color: #ffffff;
+}
+
.skipb {
text-align: right;
background-color: #c0c0c0;
@@ -87,3 +99,13 @@ td {
text-align: right;
background-color: #40ff40;
}
+
+.trapb, .abortb, .crashb {
+ text-align: right;
+ background-color: #0a0a0a;
+ color: #ffffff;
+}
+
+td.trapa a, td.trapb a, td.aborta a, td.abortb a, td.crasha a, td.crashb a {
+ color: #ffffff;
+}