Searched defs:spanningRowsHeight (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp255 void RenderTableSection::populateSpanningRowsHeightFromCell(RenderTableCell* cell, struct SpanningRowsHeight& spanningRowsHeight) argument
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);
433 struct SpanningRowsHeight spanningRowsHeight; local
[all...]

Completed in 138 milliseconds