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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ListControl.js

Issue 2607103004: DevTools: Make sure a horizontal scrollbar doesn't appear in SuggestBox (Closed)
Patch Set: Move overflow hidden to client Created 3 years, 11 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/ui/suggestBox.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/ui/ListControl.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ListControl.js b/third_party/WebKit/Source/devtools/front_end/ui/ListControl.js
index b80e963eb6bbed2184d7808d8e2b65f4124f0fe8..f97f8d9db4d5d5f9397adc3b9febfb8263b63d4a 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ListControl.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ListControl.js
@@ -54,7 +54,7 @@ UI.ListControl = class {
*/
constructor(delegate, mode) {
this.element = createElement('div');
- this.element.style.overflow = 'auto';
+ this.element.style.overflowY = 'auto';
this._topElement = this.element.createChild('div');
this._bottomElement = this.element.createChild('div');
this._firstIndex = 0;
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/ui/suggestBox.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698