summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/tools/clang-diff/ClangDiff.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/clang-diff/ClangDiff.cpp b/clang/tools/clang-diff/ClangDiff.cpp
index 3b541a29e68..55cef911709 100644
--- a/clang/tools/clang-diff/ClangDiff.cpp
+++ b/clang/tools/clang-diff/ClangDiff.cpp
@@ -140,9 +140,9 @@ highlightStack = []
function clearHighlight() {
while (highlightStack.length) {
var [l, r] = highlightStack.pop()
- document.getElementById(l).style.backgroundColor = 'white'
+ document.getElementById(l).style.backgroundColor = 'inherit'
if (r[1] != '-')
- document.getElementById(r).style.backgroundColor = 'white'
+ document.getElementById(r).style.backgroundColor = 'inherit'
}
}
function highlight(event) {
OpenPOWER on IntegriCloud