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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js

Issue 2383183002: DevTools: fix scrolling in audits (Closed)
Patch Set: Created 4 years, 3 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 | third_party/WebKit/Source/devtools/front_end/audits/auditsPanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dbacdd497036813de0ad3e5c14ab6edee3528749..aa9fe047a320c3fc3fec145ad8bf7816ac133ee1 100644
--- a/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/audits/AuditsPanel.js
@@ -132,6 +132,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;
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/audits/auditsPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698