Searched defs:styleLogicalWidth (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTable.cpp266 Length styleLogicalWidth = style()->logicalWidth(); local
267 if ((styleLogicalWidth.isSpecified() && styleLogicalWidth.isPositive()) || styleLogicalWidth.isIntrinsic())
268 setLogicalWidth(convertStyleLogicalWidthToComputedWidth(styleLogicalWidth, containerWidthInInlineDirection));
316 LayoutUnit RenderTable::convertStyleLogicalWidthToComputedWidth(const Length& styleLogicalWidth, LayoutUnit availableWidth) argument
318 if (styleLogicalWidth.isIntrinsic())
319 return computeIntrinsicLogicalWidthUsing(styleLogicalWidth, availableWidth, bordersPaddingAndSpacingInRowDirection());
324 if (isCSSTable && styleLogicalWidth.isSpecified() && styleLogicalWidth
[all...]

Completed in 75 milliseconds