Bug 1251644 - Snap object-contain fit if we were going to reduce the size by less than one css pixel. r=seth

--HG--
extra : rebase_source : 1ee6fbfbed92c16f4fb21535455af3737c02d9f8
This commit is contained in:
Matt Woodrow 2016-05-10 13:25:20 +12:00
Родитель dd289e3ee0
Коммит f74cbd822c
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -4990,9 +4990,17 @@ nsImageRenderer::ComputeConstrainedSize(const nsSize& aConstrainingSize,
size.width = aConstrainingSize.width;
size.height = NSCoordSaturatingNonnegativeMultiply(
aIntrinsicRatio.height, scaleX);
// If we're reducing the size by less than one css pixel, then just use the
// constraining size.
if (aFitType == CONTAIN && aConstrainingSize.height - size.height < nsPresContext::AppUnitsPerCSSPixel()) {
size.height = aConstrainingSize.height;
}
} else {
size.width = NSCoordSaturatingNonnegativeMultiply(
aIntrinsicRatio.width, scaleY);
if (aFitType == CONTAIN && aConstrainingSize.width - size.width < nsPresContext::AppUnitsPerCSSPixel()) {
size.width = aConstrainingSize.width;
}
size.height = aConstrainingSize.height;
}
return size;