Searched defs:deltaLeft (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderObject.cpp1250 int deltaLeft = newBounds.x() - oldBounds.x(); local
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()));

Completed in 124 milliseconds