зеркало из https://github.com/mozilla/pjs.git
Bug 527289 - crash [@ nsHyperTextAccessible::ScrollSubstringToPoint(int, int, unsigned int, int, int)]. r=surkov,MarcoZ
This commit is contained in:
Родитель
5fe30fc9b2
Коммит
9d200f1b19
|
@ -2032,6 +2032,11 @@ nsHyperTextAccessible::ScrollSubstringToPoint(PRInt32 aStartIndex,
|
|||
presContext->DevPixelsToAppUnits(devOffsetY));
|
||||
|
||||
nsSize size(parentFrame->GetSize());
|
||||
|
||||
// avoid divide by zero
|
||||
size.width = size.width ? size.width : 1;
|
||||
size.height = size.height ? size.height : 1;
|
||||
|
||||
PRInt16 hPercent = offsetPoint.x * 100 / size.width;
|
||||
PRInt16 vPercent = offsetPoint.y * 100 / size.height;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче