Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DFixedTableLayout.cpp219 int totalFixedWidth = 0; in layout() local
230 totalFixedWidth += calcWidth[i]; in layout()
242 int totalWidth = totalFixedWidth + totalPercentWidth; in layout()
248 if (totalFixedWidth && totalWidth < tableWidth) { in layout()
249 totalFixedWidth = 0; in layout()
253 totalFixedWidth += calcWidth[i]; in layout()
261 … calcWidth[i] = m_width[i].rawValue() * (tableWidth - totalFixedWidth) / totalRawPercent; in layout()
266 totalWidth = totalFixedWidth + totalPercentWidth; in layout()
270 …int remainingWidth = tableWidth - totalFixedWidth - totalPercentWidth - hspacing * (autoSpan - num… in layout()