HomeSort by relevance Sort by last modified time
    Searched defs:strictMode (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/rendering/
RootInlineBox.cpp 217 bool strictMode = (curr && curr->document()->inStrictMode());
219 computeLogicalBoxHeights(maxPositionTop, maxPositionBottom, maxAscent, maxDescent, strictMode);
227 placeBoxesVertically(heightOfBlock, maxHeight, maxAscent, strictMode, lineTop, lineBottom);
228 computeVerticalOverflow(lineTop, lineBottom, strictMode);
InlineFlowBox.cpp 389 int& maxAscent, int& maxDescent, bool strictMode)
395 if (hasTextChildren() || strictMode) {
456 } else if ((!isInlineFlow || static_cast<InlineFlowBox*>(curr)->hasTextChildren()) || curr->boxModelObject()->hasHorizontalBordersOrPadding() || strictMode) {
466 static_cast<InlineFlowBox*>(curr)->computeLogicalBoxHeights(maxPositionTop, maxPositionBottom, maxAscent, maxDescent, strictMode);
470 void InlineFlowBox::placeBoxesVertically(int yPos, int maxHeight, int maxAscent, bool strictMode, int& selectionTop, int& selectionBottom)
483 static_cast<InlineFlowBox*>(curr)->placeBoxesVertically(yPos, maxHeight, maxAscent, strictMode, selectionTop, selectionBottom);
491 if ((isInlineFlow && !static_cast<InlineFlowBox*>(curr)->hasTextChildren()) && !curr->boxModelObject()->hasHorizontalBordersOrPadding() && !strictMode)
520 if (hasTextChildren() || strictMode) {
527 void InlineFlowBox::computeVerticalOverflow(int lineTop, int lineBottom, bool strictMode)
578 flow->computeVerticalOverflow(lineTop, lineBottom, strictMode);
    [all...]

Completed in 273 milliseconds