Home | History | Annotate | Download | only in rendering

Lines Matching refs:deltaLeft

1250     int deltaLeft = newBounds.x() - oldBounds.x();
1251 if (deltaLeft > 0)
1252 repaintUsingContainer(repaintContainer, IntRect(oldBounds.x(), oldBounds.y(), deltaLeft, oldBounds.height()));
1253 else if (deltaLeft < 0)
1254 repaintUsingContainer(repaintContainer, IntRect(newBounds.x(), newBounds.y(), -deltaLeft, newBounds.height()));