Home | History | Annotate | Download | only in rendering

Lines Matching refs:logicalHeight

54     row->logicalHeight = row->rowRenderer->style()->logicalHeight();
55 if (row->logicalHeight.isRelative())
56 row->logicalHeight = Length();
176 m_grid[r].logicalHeight = Length();
201 Length logicalHeight = cell->style()->logicalHeight();
202 if (logicalHeight.isPositive() || (logicalHeight.isRelative() && logicalHeight.value() >= 0)) {
203 Length cRowLogicalHeight = m_grid[m_cRow].logicalHeight;
204 switch (logicalHeight.type()) {
207 (cRowLogicalHeight.isPercent() && cRowLogicalHeight.percent() < logicalHeight.percent()))
208 m_grid[m_cRow].logicalHeight = logicalHeight;
212 (cRowLogicalHeight.isFixed() && cRowLogicalHeight.value() < logicalHeight.value()))
213 m_grid[m_cRow].logicalHeight = logicalHeight;
336 height += m_grid[r].logicalHeight.calcMinValue(0) + (m_grid[r].rowRenderer ? spacing : 0);
355 int ch = m_grid[r].logicalHeight.calcMinValue(0);
388 int adjustedLogicalHeight = cell->logicalHeight() - (cell->intrinsicPaddingBefore() + cell->intrinsicPaddingAfter());
392 ch = cell->style()->logicalHeight().calcValue(0) +
522 if (m_grid[r].logicalHeight.isAuto())
524 else if (m_grid[r].logicalHeight.isPercent())
525 totalPercent += m_grid[r].logicalHeight.percent();
533 if (totalPercent > 0 && m_grid[r].logicalHeight.isPercent()) {
534 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
540 totalPercent -= m_grid[r].logicalHeight.percent();
551 if (numAuto > 0 && m_grid[r].logicalHeight.isAuto()) {
613 bool flexAllChildren = cell->style()->logicalHeight().isFixed()
614 || (!table()->style()->logicalHeight().isAuto() && rHeight != cell->logicalHeight());
617 if (!o->isText() && o->style()->logicalHeight().isPercent() && (flexAllChildren || o->isReplaced() || (o->isBox() && toRenderBox(o)->scrollsOverflow()))) {
665 int logicalHeightWithoutIntrinsicPadding = cell->logicalHeight() - oldIntrinsicPaddingBefore - oldIntrinsicPaddingAfter;