Searched refs:styleMaxLogicalWidth (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp263 const Length& styleMaxLogicalWidth = m_table->style()->logicalMaxWidth(); local
264 if (styleMaxLogicalWidth.isFixed() && !styleMaxLogicalWidth.isNegative()) {
265 minWidth = std::min<int>(minWidth, styleMaxLogicalWidth.value());
H A DRenderTable.cpp285 Length styleMaxLogicalWidth = style()->logicalMaxWidth(); local
286 if ((styleMaxLogicalWidth.isSpecified() && !styleMaxLogicalWidth.isNegative()) || styleMaxLogicalWidth.isIntrinsic()) {
287 LayoutUnit computedMaxLogicalWidth = convertStyleLogicalWidthToComputedWidth(styleMaxLogicalWidth, availableLogicalWidth);

Completed in 100 milliseconds