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

  /external/webkit/WebCore/rendering/
RenderBlockLineLayout.cpp 333 int totWidth = lineBox->getFlowSpacingWidth();
357 totWidth += rt->style(firstLine)->font().wordSpacing();
361 r->m_box->setWidth(rt->width(r->m_start, r->m_stop - r->m_start, totWidth, firstLine, &fallbackFonts));
374 totWidth += renderBox->marginLeft() + renderBox->marginRight();
377 totWidth += r->m_box->width();
391 if (totWidth > availableWidth && trailingSpaceRun)
392 trailingSpaceRun->m_box->setWidth(max(0, trailingSpaceRun->m_box->width() - totWidth + availableWidth));
396 else if (totWidth > availableWidth)
397 x -= (totWidth - availableWidth);
403 totWidth -= trailingSpaceRun->m_box->width()
    [all...]
InlineFlowBox.cpp 57 int totWidth = marginBorderPaddingLeft() + marginBorderPaddingRight();
60 totWidth += static_cast<InlineFlowBox*>(curr)->getFlowSpacingWidth();
62 return totWidth;
    [all...]

Completed in 25 milliseconds