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

Unified Diff: Source/devtools/front_end/ui/ViewportControl.js

Issue 396853005: DevTools: [Console] fix certain case that forces console to shake (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/ViewportControl.js
diff --git a/Source/devtools/front_end/ui/ViewportControl.js b/Source/devtools/front_end/ui/ViewportControl.js
index c2b76c7d81c19f3f91c0e72a3f821dffc277369d..59be1c11d4244e85e2e0b071e235f40c0e519c1d 100644
--- a/Source/devtools/front_end/ui/ViewportControl.js
+++ b/Source/devtools/front_end/ui/ViewportControl.js
@@ -350,7 +350,7 @@ WebInspector.ViewportControl.prototype = {
refresh: function()
{
- if (!this.element.clientHeight)
+ if (!this._visibleHeight())
return; // Do nothing for invisible controls.
var itemCount = this._provider.itemCount();
@@ -372,7 +372,7 @@ WebInspector.ViewportControl.prototype = {
var shouldRestoreSelection = this._updateSelectionModel(selection);
var visibleFrom = this.element.scrollTop;
- var clientHeight = this.element.clientHeight;
+ var visibleHeight = this._visibleHeight();
var shouldStickToBottom = this._stickToBottom && this.element.isScrolledToBottom();
var isInvalidating = !this._cumulativeHeights;
@@ -389,11 +389,11 @@ WebInspector.ViewportControl.prototype = {
var oldLastVisibleIndex = this._lastVisibleIndex;
if (shouldStickToBottom) {
this._lastVisibleIndex = itemCount - 1;
- this._firstVisibleIndex = Math.max(itemCount - Math.ceil(clientHeight / this._provider.minimumRowHeight()), 0);
+ this._firstVisibleIndex = Math.max(itemCount - Math.ceil(visibleHeight / this._provider.minimumRowHeight()), 0);
} else {
this._firstVisibleIndex = Math.max(Array.prototype.lowerBound.call(this._cumulativeHeights, visibleFrom + 1), 0);
// Proactively render more rows in case some of them will be collapsed without triggering refresh. @see crbug.com/390169
- this._lastVisibleIndex = this._firstVisibleIndex + Math.ceil(clientHeight / this._provider.minimumRowHeight()) - 1;
+ this._lastVisibleIndex = this._firstVisibleIndex + Math.ceil(visibleHeight / this._provider.minimumRowHeight()) - 1;
this._lastVisibleIndex = Math.min(this._lastVisibleIndex, itemCount - 1);
}
var topGapHeight = this._cumulativeHeights[this._firstVisibleIndex - 1] || 0;
@@ -586,7 +586,16 @@ WebInspector.ViewportControl.prototype = {
forceScrollItemToBeLast: function(index)
{
this._rebuildCumulativeHeightsIfNeeded();
- this.element.scrollTop = this._cumulativeHeights[index] - this.element.clientHeight;
+ this.element.scrollTop = this._cumulativeHeights[index] - this._visibleHeight();
this.refresh();
+ },
+
+ /**
+ * @return {number}
+ */
+ _visibleHeight: function()
+ {
+ // Use offsetHeight instead of clientHeight to avoid being affected by horizontal scroll.
+ return this.element.offsetHeight;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698