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()
244 void populateSpanningRowsHeightFromCell(RenderTableCell*, struct SpanningRowsHeight&);
RenderTableSection.cpp 255 void RenderTableSection::populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight)
260 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing = cell->logicalHeightForRowSizing();
262 spanningRowsHeight.rowHeight.resize(rowSpan);
263 spanningRowsHeight.totalRowsHeight = 0;
266 spanningRowsHeight.rowHeight[row] = m_rowPos[actualRow + 1] - m_rowPos[actualRow] - borderSpacingForRow(actualRow);
267 spanningRowsHeight.totalRowsHeight += spanningRowsHeight.rowHeight[row];
268 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing -= borderSpacingForRow(actualRow);
271 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing += borderSpacingForRow(rowIndex + rowSpan - 1)
    [all...]

Completed in 1027 milliseconds