HomeSort by relevance Sort by last modified time
    Searched refs:SpanningRowsHeight (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.h 135 struct SpanningRowsHeight {
136 WTF_MAKE_NONCOPYABLE(SpanningRowsHeight);
139 SpanningRowsHeight()
264 void updateRowsHeightHavingOnlySpanningCells(RenderTableCell*, struct SpanningRowsHeight&);
267 void populateSpanningRowsHeightFromCell(RenderTableCell*, struct SpanningRowsHeight&);
RenderTableSection.cpp 296 void RenderTableSection::populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight)
301 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing = cell->logicalHeightForRowSizing();
303 spanningRowsHeight.rowHeight.resize(rowSpan);
304 spanningRowsHeight.totalRowsHeight = 0;
308 spanningRowsHeight.rowHeight[row] = m_rowPos[actualRow + 1] - m_rowPos[actualRow] - borderSpacingForRow(actualRow);
309 if (!spanningRowsHeight.rowHeight[row])
310 spanningRowsHeight.isAnyRowWithOnlySpanningCells |= rowHasOnlySpanningCells(actualRow);
312 spanningRowsHeight.totalRowsHeight += spanningRowsHeight.rowHeight[row]
    [all...]

Completed in 55 milliseconds