Home | History | Annotate | Download | only in nav

Lines Matching defs:newBounds

648     IntRect newBounds = node->bounds(frame);
649 IntPoint newCenter = IntPoint(newBounds.x() + (newBounds.width() >> 1),
650 newBounds.y() + (newBounds.height() >> 1));
652 " bounds=(%d,%d,w=%d,h=%d) newBounds=(%d,%d,w=%d,h=%d)",
655 newBounds.x(), newBounds.y(), newBounds.width(), newBounds.height());
660 if (abs(bounds.x() - newBounds.x()) > 4)
662 if (abs(bounds.y() - newBounds.y()) > 4)
664 if (abs(bounds.maxX() - newBounds.maxX()) > 4)
666 if (abs(bounds.maxY() - newBounds.maxY()) > 4)