Bug 383872 - invalid image height assertion with svg foreignObject element, background image, height: 0.5px. r=vladimir,sr=roc

This commit is contained in:
longsonr@gmail.com 2007-07-03 01:53:03 -07:00
Родитель 26b5717ddc
Коммит a5c198d903
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -383,7 +383,7 @@ nsThebesImage::Draw(nsIRenderingContext &aContext,
}
// Reject over-wide or over-tall images.
if (!AllowedImageSize(destRect.size.width, destRect.size.height))
if (!AllowedImageSize(destRect.size.width + 1, destRect.size.height + 1))
return NS_ERROR_FAILURE;
nsRefPtr<gfxPattern> pat;