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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 263 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth();
264 if (styleMaxLogicalWidth.isFixed() && !styleMaxLogicalWidth.isNegative()) {
265 minWidth = std::min<int>(minWidth, styleMaxLogicalWidth.value());
    [all...]
RenderTable.cpp 285 Length styleMaxLogicalWidth = style()->logicalMaxWidth();
286 if ((styleMaxLogicalWidth.isSpecified() && !styleMaxLogicalWidth.isNegative()) || styleMaxLogicalWidth.isIntrinsic()) {
287 LayoutUnit computedMaxLogicalWidth = convertStyleLogicalWidthToComputedWidth(styleMaxLogicalWidth, availableLogicalWidth);
    [all...]

Completed in 196 milliseconds