Bug 230965 scrollMax[XY] should not throw exceptions patch based on roc's patch for scroll[XY] that was used to fix bug 202206 r/sr=jst

git-svn-id: svn://10.0.0.236/trunk@155633 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
neil%parkwaycc.co.uk
2004-04-28 12:56:02 +00:00
parent fab9e44286
commit ee643e071c

View File

@@ -1962,7 +1962,7 @@ GlobalWindowImpl::GetScrollMaxXY(PRInt32* aScrollMaxX, PRInt32* aScrollMaxY)
GetScrollInfo(&view, &p2t, &t2p);
if (!view)
return NS_ERROR_FAILURE;
return NS_OK; // bug 230965 changed from NS_ERROR_FAILURE
nsSize scrolledSize;
rv = view->GetContainerSize(&scrolledSize.width, &scrolledSize.height);