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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp222 int totalFixedWidth = 0; local
233 totalFixedWidth += calcWidth[i];
245 int totalWidth = totalFixedWidth + totalPercentWidth;
251 if (totalFixedWidth && totalWidth < tableLogicalWidth) {
252 totalFixedWidth = 0;
256 totalFixedWidth += calcWidth[i];
264 calcWidth[i] = m_width[i].percent() * (tableLogicalWidth - totalFixedWidth) / totalPercent;
269 totalWidth = totalFixedWidth + totalPercentWidth;
274 int remainingWidth = tableLogicalWidth - totalFixedWidth - totalPercentWidth - hspacing * (autoSpan - numAuto);

Completed in 342 milliseconds