Home
last modified time | relevance | path

Searched refs:fixedWidth (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/rendering/
DAutoTableLayout.cpp331 int fixedWidth = 0; in calcEffectiveWidth() local
340 fixedWidth += m_layoutStruct[lastCol].width.value(); in calcEffectiveWidth()
411 for (unsigned int pos = col; fixedWidth > 0 && pos < lastCol; pos++) { in calcEffectiveWidth()
412 …= max(m_layoutStruct[pos].effMinWidth, cMinWidth * m_layoutStruct[pos].width.value() / fixedWidth); in calcEffectiveWidth()
413 fixedWidth -= m_layoutStruct[pos].width.value(); in calcEffectiveWidth()
424 … if (m_layoutStruct[pos].width.isFixed() && haveAuto && fixedWidth <= cMinWidth) { in calcEffectiveWidth()
426 fixedWidth -= m_layoutStruct[pos].width.value(); in calcEffectiveWidth()
435 … if (!(m_layoutStruct[pos].width.isFixed() && haveAuto && fixedWidth <= cMinWidth)) { in calcEffectiveWidth()