HomeSort by relevance Sort by last modified time
    Searched full:recordsinpage (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineView.js 754 var recordsInPage = Math.floor(this._containerElementHeight / WebInspector.TimelinePanel.rowHeight);
796 index = Math.max(0, index - recordsInPage);
797 this._scrollTop = Math.max(0, this._scrollTop - recordsInPage * rowHeight);
803 index = Math.min(recordsInWindow.length - 1, index + recordsInPage);
804 this._scrollTop = Math.min(this._containerElement.scrollHeight - this._containerElementHeight, this._scrollTop + recordsInPage * rowHeight);
    [all...]

Completed in 313 milliseconds