Home
last modified time | relevance | path

Searched refs:deltaTop (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderObject.cpp1740 int deltaTop = newBounds.y() - oldBounds.y(); in repaintAfterLayoutIfNeeded() local
1741 if (deltaTop > 0) in repaintAfterLayoutIfNeeded()
1742 v->repaintViewRectangle(IntRect(oldBounds.x(), oldBounds.y(), oldBounds.width(), deltaTop)); in repaintAfterLayoutIfNeeded()
1743 else if (deltaTop < 0) in repaintAfterLayoutIfNeeded()
1744 … v->repaintViewRectangle(IntRect(newBounds.x(), newBounds.y(), newBounds.width(), -deltaTop)); in repaintAfterLayoutIfNeeded()