Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-02-20 21:17:29 +0400
committerisaacs <i@izs.me>2013-02-20 21:17:29 +0400
commit053e02ef8e49a0a56dbae5b3e08ad9f09ae977b6 (patch)
tree18e98c9fc25b7649baa4d27e346e05ad40904861 /benchmark
parent57ef65916ba382fa29040d03d1cff1dc7bf7ddd8 (diff)
benchmark: Fix alignment issues on --html compare output
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/compare.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/compare.js b/benchmark/compare.js
index 8e1ab0963af..b3576ba4acc 100644
--- a/benchmark/compare.js
+++ b/benchmark/compare.js
@@ -34,7 +34,7 @@ if (!html) {
} else {
var start = '<pre style="background-color:#333;color:#eee">';
var green = '<span style="background-color:#0f0;color:#000">';
- var red = '<span style="background-color:#f00">';
+ var red = '<span style="background-color:#f00;color:#fff">';
var reset = '</span>';
var end = '</pre>';
}