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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp304 void RenderTableSection::distributeExtraRowSpanHeightToAutoRows(RenderTableCell* cell, int totalAutoRowsHeight, int& extraRowSpanningHeight, Vector<int>& rowsHeight) argument
306 if (!extraRowSpanningHeight || !totalAutoRowsHeight)
318 accumulatedPositionIncrease += (extraRowSpanningHeight * rowsHeight[row - rowIndex]) / totalAutoRowsHeight;
319 remainder += (extraRowSpanningHeight * rowsHeight[row - rowIndex]) % totalAutoRowsHeight;
325 if (remainder >= totalAutoRowsHeight) {
326 remainder -= totalAutoRowsHeight;
441 int totalAutoRowsHeight = 0; local
453 totalAutoRowsHeight += spanningRowsHeight.rowHeight[row - rowIndex];
460 distributeExtraRowSpanHeightToAutoRows(cell, totalAutoRowsHeight, extraRowSpanningHeight, spanningRowsHeight.rowHeight);

Completed in 70 milliseconds