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 125 struct SpanningRowsHeight {
126 WTF_MAKE_NONCOPYABLE(SpanningRowsHeight);
129 SpanningRowsHeight()
248 void updateRowsHeightHavingOnlySpanningCells(RenderTableCell*, struct SpanningRowsHeight&);
251 void populateSpanningRowsHeightFromCell(RenderTableCell*, struct SpanningRowsHeight&);
RenderTableSection.cpp 278 void RenderTableSection::populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight)
283 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing = cell->logicalHeightForRowSizing();
285 spanningRowsHeight.rowHeight.resize(rowSpan);
286 spanningRowsHeight.totalRowsHeight = 0;
290 spanningRowsHeight.rowHeight[row] = m_rowPos[actualRow + 1] - m_rowPos[actualRow] - borderSpacingForRow(actualRow);
291 if (!spanningRowsHeight.rowHeight[row])
292 spanningRowsHeight.rowWithOnlySpanningCells |= rowHasOnlySpanningCells(actualRow);
294 spanningRowsHeight.totalRowsHeight += spanningRowsHeight.rowHeight[row]
    [all...]

Completed in 733 milliseconds