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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnSet.cpp 224 LayoutUnit colLogicalWidth = computedColumnWidth();
230 colLogicalLeft += index * (colLogicalWidth + colGap);
232 colLogicalLeft += contentLogicalWidth() - colLogicalWidth - index * (colLogicalWidth + colGap);
235 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
236 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth);
457 LayoutUnit colLogicalWidth = computedColumnWidth();
477 LayoutUnit inlineOffset = i * (colLogicalWidth + colGap);
AutoTableLayout.cpp 154 Length colLogicalWidth = column->style()->logicalWidth();
155 if (colLogicalWidth.isAuto())
156 colLogicalWidth = groupLogicalWidth;
157 if ((colLogicalWidth.isFixed() || colLogicalWidth.isPercent()) && colLogicalWidth.isZero())
158 colLogicalWidth = Length();
161 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
162 m_layoutStruct[effCol].logicalWidth = colLogicalWidth;
163 if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value()
    [all...]
RenderBlock.cpp     [all...]

Completed in 654 milliseconds