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

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

Issue 2378933002: 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 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;
« 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