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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControl.cpp 275 if (styleToUse->logicalMaxWidth().isFixed()) {
276 m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
277 m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
RenderReplaced.cpp 226 && (containingBlock->style()->logicalMaxWidth().isSpecified() || containingBlock->style()->logicalMaxWidth().isUndefined()))
485 if (styleToUse->logicalWidth().isPercent() || styleToUse->logicalMaxWidth().isPercent())
493 if (styleToUse->logicalMaxWidth().isFixed()) {
494 m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
495 m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
RenderTable.cpp 287 Length styleMaxLogicalWidth = style()->logicalMaxWidth();
    [all...]
RenderImage.cpp 218 bool containingBlockNeedsToRecomputePreferredSize = style()->logicalWidth().isPercent() || style()->logicalMaxWidth().isPercent() || style()->logicalMinWidth().isPercent();
RenderBox.cpp 547 if (!styleToUse->logicalMaxWidth().isUndefined())
548 logicalWidth = min(logicalWidth, computeLogicalWidthUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb));
    [all...]
AutoTableLayout.cpp 262 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth();
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 133 if (style()->logicalWidth().isSpecified() || style()->logicalMaxWidth().isSpecified())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 488 const Length& logicalMaxWidth() const { return isHorizontalWritingMode() ? maxWidth() : maxHeight(); }
    [all...]

Completed in 414 milliseconds