Home | History | Annotate | Download | only in rendering

Lines Matching refs:borderThickness

138     int borderThickness = frameSet()->border();
146 if (borderThickness && m_cols.m_allowBorder[c + 1]) {
147 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
148 xPos += borderThickness;
155 if (borderThickness && m_rows.m_allowBorder[r + 1]) {
156 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness));
157 yPos += borderThickness;
493 int borderThickness = frameSet()->border();
494 layOutAxis(m_rows, frameSet()->rowLengths(), height() - (rows - 1) * borderThickness);
495 layOutAxis(m_cols, frameSet()->colLengths(), width() - (cols - 1) * borderThickness);
529 int borderThickness = frameSet()->border();
567 xPos += child->width() + borderThickness;
573 yPos += height + borderThickness;
577 // Note: we subtract borderThickness because we only count borders between frames.
578 int newWidth = maxWidth - borderThickness;
579 int newHeight = yPos - borderThickness;
585 int availableWidth = width() - (cols - 1) * borderThickness;
594 int availableHeight = height() - (rows - 1) * borderThickness;
625 xPos += width + borderThickness;
631 yPos += height + borderThickness;
651 int borderThickness = frameSet()->border();
726 xPos += m_cols.m_sizes[c] + borderThickness;
733 yPos += m_rows.m_sizes[r] + borderThickness;
736 setWidth(xPos - borderThickness);
737 setHeight(yPos - borderThickness);
851 int borderThickness = frameSet()->border();
859 position += axis.m_sizes[i] + borderThickness;
860 return position - borderThickness;
868 int borderThickness = frameSet()->border();
869 if (borderThickness <= 0)
878 if (position >= splitPosition && position < splitPosition + borderThickness)
880 splitPosition += borderThickness + axis.m_sizes[i];