Home | History | Annotate | Download | only in rendering

Lines Matching refs:logicalWidth

100         Length colStyleLogicalWidth = col->style()->logicalWidth();
140 Length logicalWidth = cell->styleOrColLogicalWidth();
143 if (logicalWidth.isCalculated())
144 logicalWidth = Length(); // Make it Auto
150 if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
151 fixedBorderBoxLogicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(logicalWidth.value());
152 logicalWidth.setValue(fixedBorderBoxLogicalWidth);
159 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
160 m_width[currentColumn] = logicalWidth;
185 Length tableLogicalWidth = m_table->style()->logicalWidth();
201 if (m_table->style()->logicalWidth().isPercent() && maxWidth < tableMaxWidth)
207 int tableLogicalWidth = m_table->logicalWidth() - m_table->bordersPaddingAndSpacingInRowDirection();