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 273 if (styleToUse->logicalMaxWidth().isFixed()) {
274 m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
275 m_minPreferredLogicalWidth = std::min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
RenderReplaced.cpp 451 if (styleToUse->logicalWidth().isPercent() || styleToUse->logicalMaxWidth().isPercent())
459 if (styleToUse->logicalMaxWidth().isFixed()) {
460 m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
461 m_minPreferredLogicalWidth = std::min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
RenderTable.cpp 285 Length styleMaxLogicalWidth = style()->logicalMaxWidth();
689 if (styleToUse->logicalMaxWidth().isFixed()) {
691 m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
    [all...]
RenderImage.cpp 217 bool containingBlockNeedsToRecomputePreferredSize = style()->logicalWidth().isPercent() || style()->logicalMaxWidth().isPercent() || style()->logicalMinWidth().isPercent();
RenderBox.cpp 526 if (!styleToUse->logicalMaxWidth().isMaxSizeNone())
527 logicalWidth = std::min(logicalWidth, computeLogicalWidthUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb));
    [all...]
AutoTableLayout.cpp 263 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth();
    [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 136 if (style()->logicalWidth().isSpecified() || style()->logicalMaxWidth().isSpecified())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 472 const Length& logicalMaxWidth() const { return isHorizontalWritingMode() ? maxWidth() : maxHeight(); }
    [all...]

Completed in 115 milliseconds