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

Unified Diff: Source/devtools/front_end/elements/ElementsTreeElement.js

Issue 1304023002: DevTools: Drop color intensity of DOM symbols for readability (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | Source/devtools/front_end/ui/inspectorSyntaxHighlight.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/elements/ElementsTreeElement.js
diff --git a/Source/devtools/front_end/elements/ElementsTreeElement.js b/Source/devtools/front_end/elements/ElementsTreeElement.js
index c3e98a2659a5b5ccdd9d0d885ddcc7e58c1bfdd4..6e13fad381de23363cd0f4bf22d161d12c0b39a9 100644
--- a/Source/devtools/front_end/elements/ElementsTreeElement.js
+++ b/Source/devtools/front_end/elements/ElementsTreeElement.js
@@ -1305,7 +1305,7 @@ WebInspector.ElementsTreeElement.prototype = {
classes.push("close");
var tagElement = parentElement.createChild("span", classes.join(" "));
tagElement.createTextChild("<");
- var tagNameElement = tagElement.createChild("span", isClosingTag ? "" : "webkit-html-tag-name");
+ var tagNameElement = tagElement.createChild("span", isClosingTag ? "webkit-html-close-tag-name" : "webkit-html-tag-name");
tagNameElement.textContent = (isClosingTag ? "/" : "") + tagName;
if (!isClosingTag) {
if (node.hasAttributes()) {
« no previous file with comments | « no previous file | Source/devtools/front_end/ui/inspectorSyntaxHighlight.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698