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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.cpp376 void RenderTable::distributeExtraLogicalHeight(int extraLogicalHeight) argument
378 if (extraLogicalHeight <= 0)
383 extraLogicalHeight -= section->distributeExtraLogicalHeightToRows(extraLogicalHeight);
387 // ASSERT(!topSection() || !extraLogicalHeight);
H A DRenderTableSection.cpp833 void RenderTableSection::distributeExtraLogicalHeightToPercentRows(int& extraLogicalHeight, int totalPercent) argument
839 int totalHeight = m_rowPos[totalRows] + extraLogicalHeight;
845 int toAdd = std::min<int>(extraLogicalHeight, (totalHeight * m_grid[r].logicalHeight.percent() / 100) - rowHeight);
850 extraLogicalHeight -= toAdd;
860 void RenderTableSection::distributeExtraLogicalHeightToAutoRows(int& extraLogicalHeight, unsigned autoRowsCount) argument
868 // Recomputing |extraLogicalHeightForRow| guarantees that we properly ditribute round |extraLogicalHeight|.
869 int extraLogicalHeightForRow = extraLogicalHeight / autoRowsCount;
871 extraLogicalHeight -= extraLogicalHeightForRow;
878 void RenderTableSection::distributeRemainingExtraLogicalHeight(int& extraLogicalHeight) argument
882 if (extraLogicalHeight <
899 distributeExtraLogicalHeightToRows(int extraLogicalHeight) argument
[all...]

Completed in 314 milliseconds