Home | History | Annotate | Download | only in timeline

Lines Matching refs:rowHeight

156             this._frameContainer.style.height = WebInspector.TimelinePanel.rowHeight + frameContainerBorderWidth + "px";
506 var itemOffset = index * WebInspector.TimelinePanel.rowHeight;
508 var visibleBottom = visibleTop + this._containerElementHeight - WebInspector.TimelinePanel.rowHeight;
512 this._containerElement.scrollTop = itemOffset - this._containerElementHeight + WebInspector.TimelinePanel.headerHeight + WebInspector.TimelinePanel.rowHeight;
526 var rowHeight = WebInspector.TimelinePanel.rowHeight;
530 var startIndex = Math.max(0, Math.min(Math.floor((visibleTop - headerHeight) / rowHeight), recordsInWindow.length - 1));
531 var endIndex = Math.min(recordsInWindow.length, Math.ceil(visibleBottom / rowHeight));
532 var lastVisibleLine = Math.max(0, Math.floor((visibleBottom - headerHeight) / rowHeight));
545 this._topGapElement.style.height = (startIndex * rowHeight) + "px";
546 this._recordsView.sidebarElement().firstElementChild.style.flexBasis = (startIndex * rowHeight + headerHeight) + "px";
547 this._bottomGapElement.style.height = (recordsInWindow.length - endIndex) * rowHeight + "px";
548 var rowsHeight = headerHeight + recordsInWindow.length * rowHeight;
611 this._adjustScrollPosition(recordsInWindow.length * rowHeight + headerHeight);
754 var recordsInPage = Math.floor(this._containerElementHeight / WebInspector.TimelinePanel.rowHeight);
755 var rowHeight = WebInspector.TimelinePanel.rowHeight;
797 this._scrollTop = Math.max(0, this._scrollTop - recordsInPage * rowHeight);
804 this._scrollTop = Math.min(this._containerElement.scrollHeight - this._containerElementHeight, this._scrollTop + recordsInPage * rowHeight);
1281 const rowHeight = WebInspector.TimelinePanel.rowHeight;
1283 this._element.style.top = index * rowHeight + "px";
1287 this._element.style.height = (record.visibleChildrenCount() + 1) * rowHeight + "px";
1291 this._element.style.height = rowHeight + "px";