Bug 1521425 - Round up when inflating mRect of SVG text. r=longsonr

This commit is contained in:
Alex Henrie 2019-02-17 22:27:56 -07:00
Родитель d631a55079
Коммит 7afb5aaf34
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3520,7 +3520,7 @@ void SVGTextFrame::ReflowSVG() {
// Due to rounding issues when we have a transform applied, we sometimes
// don't include an additional row of pixels. For now, just inflate our
// covered region.
mRect.Inflate(presContext->AppUnitsPerDevPixel() / mLastContextScale);
mRect.Inflate(ceil(presContext->AppUnitsPerDevPixel() / mLastContextScale));
}
if (mState & NS_FRAME_FIRST_REFLOW) {