Home | History | Annotate | Download | only in rendering

Lines Matching refs:toAdd

454 int RenderTableSection::layoutRows(int toAdd)
521 if (toAdd && totalRows && (m_rowPos[totalRows] || !nextSibling())) {
522 int totalHeight = m_rowPos[totalRows] + toAdd;
524 int dh = toAdd;
540 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
541 // If toAdd is negative, then we don't want to shrink the row (this bug
543 toAdd = max(0, toAdd);
544 add += toAdd;
545 dh -= toAdd;
558 int toAdd = dh / numAuto;
559 add += toAdd;
560 dh -= toAdd;