summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/AuditResultView.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/AuditResultView.js')
-rw-r--r--WebCore/inspector/front-end/AuditResultView.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/WebCore/inspector/front-end/AuditResultView.js b/WebCore/inspector/front-end/AuditResultView.js
index 2636463..5771684 100644
--- a/WebCore/inspector/front-end/AuditResultView.js
+++ b/WebCore/inspector/front-end/AuditResultView.js
@@ -89,7 +89,8 @@ WebInspector.AuditCategoryResultPane.prototype = {
title = String.sprintf("%s (%d)", title, result.violationCount);
}
- var treeElement = new TreeElement(title, null, !!result.children);
+ var treeElement = new TreeElement(null, null, !!result.children);
+ treeElement.titleHTML = title;
parentTreeElement.appendChild(treeElement);
if (result.className)