OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:styleLogicalWidth
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp
262
Length
styleLogicalWidth
= style()->logicalWidth();
263
if ((
styleLogicalWidth
.isSpecified() &&
styleLogicalWidth
.isPositive()) ||
styleLogicalWidth
.isIntrinsic())
264
setLogicalWidth(convertStyleLogicalWidthToComputedWidth(
styleLogicalWidth
, containerWidthInInlineDirection));
327
LayoutUnit RenderTable::convertStyleLogicalWidthToComputedWidth(const Length&
styleLogicalWidth
, LayoutUnit availableWidth)
329
if (
styleLogicalWidth
.isIntrinsic())
330
return computeIntrinsicLogicalWidthUsing(
styleLogicalWidth
, availableWidth, bordersPaddingAndSpacingInRowDirection());
335
if (isCSSTable &&
styleLogicalWidth
.isSpecified() &&
styleLogicalWidth
.isPositive() && style()->boxSizing() == CONTENT_BOX
[
all
...]
RenderTable.h
300
LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length&
styleLogicalWidth
, LayoutUnit availableWidth);
Completed in 794 milliseconds