Home | History | Annotate | Download | only in rendering

Lines Matching refs:toAdd

448 int RenderTableSection::layoutRows(int toAdd)
515 if (toAdd && totalRows && (m_rowPos[totalRows] || !nextSibling())) {
516 int totalHeight = m_rowPos[totalRows] + toAdd;
518 int dh = toAdd;
534 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
535 // If toAdd is negative, then we don't want to shrink the row (this bug
537 toAdd = max(0, toAdd);
538 add += toAdd;
539 dh -= toAdd;
552 int toAdd = dh / numAuto;
553 add += toAdd;
554 dh -= toAdd;