Searched refs:recordsInPage (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineView.js758 var recordsInPage = Math.floor(this._containerElementHeight / WebInspector.TimelinePanel.rowHeight); variable
800 index = Math.max(0, index - recordsInPage);
801 this._scrollTop = Math.max(0, this._scrollTop - recordsInPage * rowHeight);
807 index = Math.min(recordsInWindow.length - 1, index + recordsInPage);
808 this._scrollTop = Math.min(this._containerElement.scrollHeight - this._containerElementHeight, this._scrollTop + recordsInPage * rowHeight);

Completed in 47 milliseconds