| Index: third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js b/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
|
| index 30de90baedbbb47f6085c91787aad19206b6fe75..c998c7696ab095a5c79a31c99c94d8e3927b30f7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
|
| @@ -129,6 +129,7 @@ WebInspector.AuditsPanel.prototype = {
|
| if (!categoryResults._resultLocation) {
|
| categoryResults.sort((a, b) => (a.title || "").localeCompare(b.title || ""));
|
| var resultView = WebInspector.viewManager.createStackLocation();
|
| + resultView.widget().element.classList.add("audit-result-view");
|
| for (var i = 0; i < categoryResults.length; ++i)
|
| resultView.showView(new WebInspector.AuditCategoryResultPane(categoryResults[i]));
|
| categoryResults._resultLocation = resultView;
|
|
|