johannes created this revision. https://reviews.llvm.org/D37072
Files: tools/clang-diff/ClangDiff.cpp Index: tools/clang-diff/ClangDiff.cpp =================================================================== --- tools/clang-diff/ClangDiff.cpp +++ tools/clang-diff/ClangDiff.cpp @@ -140,9 +140,9 @@ 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) {
Index: tools/clang-diff/ClangDiff.cpp =================================================================== --- tools/clang-diff/ClangDiff.cpp +++ tools/clang-diff/ClangDiff.cpp @@ -140,9 +140,9 @@ 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) {
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits