Lines Matching full:width
97 if (borderRect.width() >= 3) {
118 context->fillRect(IntRect(borderRect.topLeft(), IntSize(width(), 1)), borderStartEdgeColor(), colorSpace);
119 context->fillRect(IntRect(borderRect.bottomLeft(), IntSize(width(), 1)), borderEndEdgeColor(), colorSpace);
156 paintRowBorder(paintInfo, IntRect(tx, ty + yPos, width(), borderThickness));
260 // and the available space is 300px, each column will become 100px in width.
303 // columns will each be 50px in width.
495 layOutAxis(m_cols, frameSet()->colLengths(), width() - (cols - 1) * borderThickness);
531 // Keep track of the maximum width of a row which will become the maximum width of the frameset.
563 ASSERT(child->width() >= m_cols.m_sizes[c]);
564 m_cols.m_sizes[c] = child->width();
567 xPos += child->width() + borderThickness;
576 // Compute a new width and height according to the positioning of each expanded child frame.
581 // Distribute the extra width and height evenly across the grid.
582 int dWidth = (width() - newWidth) / cols;
585 int availableWidth = width() - (cols - 1) * borderThickness;
588 // If the extra width did not distribute evenly, add the remainder to
605 setWidth(max(width(), newWidth));
615 int width = m_cols.m_sizes[c];
618 if (width != child->width() || height != child->height()) {
619 child->setWidth(width);
625 xPos += width + borderThickness;
663 int width = m_cols.m_sizes[c];
670 child->setWidth(width ? width + extra / (cols - c) : 0);
672 child->setWidth(width);
684 if (child->width() > m_cols.m_sizes[c])
685 m_cols.m_sizes[c] = child->width();
690 // difference between calculated frame width and the width it actually decides to have
691 extra += width - m_cols.m_sizes[c];