Bug 1159729 - Use the adjusted |offset| value in GetTextDecorationRectInternal, instead of ignoring it. r=smontagu

This commit is contained in:
Jonathan Kew 2015-05-11 11:32:55 +01:00
Родитель 4bb7f96375
Коммит 2eb879c3ac
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -4549,12 +4549,12 @@ nsCSSRendering::GetTextDecorationRectInternal(const gfxPoint& aPt,
}
if (aVertical) {
r.y = baseline + floor(aOffset + 0.5); // this will need updating when we
// support sideways-left orientation
r.y = baseline + floor(offset + 0.5); // this will need updating when we
// support sideways-left orientation
Swap(r.x, r.y);
Swap(r.width, r.height);
} else {
r.y = baseline - floor(aOffset + 0.5);
r.y = baseline - floor(offset + 0.5);
}
return r;