зеркало из https://github.com/mozilla/gecko-dev.git
edge case PR_MAx should be against the insets sizes instead of zero
r=kmcclusk
This commit is contained in:
Родитель
9cd72b4dcc
Коммит
9bfe69e935
|
@ -487,7 +487,7 @@ NS_IMETHODIMP nsScrollingView::SetDimensions(nscoord width, nscoord height, PRBo
|
|||
showVert = NSToCoordRound(scrollWidth);
|
||||
|
||||
// Compute the clip view rect
|
||||
clipRect.SetRect(0, 0, PR_MAX((width - showVert), 0), PR_MAX((height - showHorz), 0));
|
||||
clipRect.SetRect(0, 0, PR_MAX((width - showVert), mInsets.left+mInsets.right), PR_MAX((height - showHorz), mInsets.top+mInsets.bottom));
|
||||
clipRect.Deflate(mInsets);
|
||||
|
||||
// Size and position the clip view
|
||||
|
|
Загрузка…
Ссылка в новой задаче