Home | History | Annotate | Download | only in mathml

Lines Matching refs:maxHeight

46     int maxHeight = 0;
52 if (blockHeight > maxHeight)
53 maxHeight = blockHeight;
57 if (box->offsetHeight() > maxHeight)
58 maxHeight = box->offsetHeight();
62 return maxHeight;
69 int maxHeight = 0;
80 if (!block->hasBase() && !block->isRenderMathMLOperator() && block->offsetHeight() > maxHeight)
81 maxHeight = block->offsetHeight();
82 if (block->hasBase() && block->nonOperatorHeight() > maxHeight)
83 maxHeight = block->nonOperatorHeight();
93 if (box->offsetHeight() > maxHeight)
94 maxHeight = box->offsetHeight();
100 maxHeight = operatorHeight;
104 if (maxHeight > 0) {
109 block->stretchToHeight(maxHeight);