Home | History | Annotate | Download | only in rendering

Lines Matching refs:maxLogicalWidth

74                 columnLayout.maxLogicalWidth = std::max<int>(columnLayout.maxLogicalWidth, 1);
78 if (cell->maxPreferredLogicalWidth() > columnLayout.maxLogicalWidth) {
79 columnLayout.maxLogicalWidth = cell->maxPreferredLogicalWidth();
131 if (m_table->document().inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth.value() && fixedContributor != maxContributor) {
137 columnLayout.maxLogicalWidth = std::max(columnLayout.maxLogicalWidth, columnLayout.minLogicalWidth);
165 if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value())
166 m_layoutStruct[effCol].maxLogicalWidth = colLogicalWidth.value();
278 int maxLogicalWidth = 0;
286 m_layoutStruct[i].effectiveMaxLogicalWidth = m_layoutStruct[i].maxLogicalWidth;
363 maxLogicalWidth = std::max(maxLogicalWidth, static_cast<int>(std::max(spanMaxLogicalWidth, cellMaxLogicalWidth) * 100 / cellLogicalWidth.percent()));
454 m_layoutStruct[pos].maxLogicalWidth = std::max(m_layoutStruct[pos].maxLogicalWidth, m_layoutStruct[pos].minLogicalWidth);
464 return std::min(maxLogicalWidth, INT_MAX / 2);