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

Unified Diff: Source/WebCore/inspector/front-end/inspector.js

Issue 8343053: Merge 98489 - Web Inspector: Need workaround for the red crossed circle in the status bar not bri... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 9 years, 2 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 | « Source/WebCore/inspector/front-end/inspector.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/front-end/inspector.js
===================================================================
--- Source/WebCore/inspector/front-end/inspector.js (revision 98701)
+++ Source/WebCore/inspector/front-end/inspector.js (working copy)
@@ -350,6 +350,9 @@
errorWarningElement.removeChildren();
if (errors) {
+ var errorImageElement = document.createElement("img");
+ errorImageElement.id = "error-count-img";
+ errorWarningElement.appendChild(errorImageElement);
var errorElement = document.createElement("span");
errorElement.id = "error-count";
errorElement.textContent = errors;
@@ -357,6 +360,9 @@
}
if (warnings) {
+ var warningsImageElement = document.createElement("img");
+ warningsImageElement.id = "warning-count-img";
+ errorWarningElement.appendChild(warningsImageElement);
var warningsElement = document.createElement("span");
warningsElement.id = "warning-count";
warningsElement.textContent = warnings;
« no previous file with comments | « Source/WebCore/inspector/front-end/inspector.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698