Bug 632516 - Handle non-finite values for translate per spec; r=roc

This commit is contained in:
Ms2ger 2011-04-01 15:31:35 -04:00
Родитель aad281fe87
Коммит 36fcb7b24d
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1430,7 +1430,7 @@ NS_IMETHODIMP
nsCanvasRenderingContext2D::Translate(float x, float y)
{
if (!FloatValidate(x,y))
return NS_ERROR_DOM_SYNTAX_ERR;
return NS_OK;
mThebes->Translate(gfxPoint(x, y));
return NS_OK;

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

@ -19030,7 +19030,7 @@ isPixel(ctx, 50,25, 0,255,0,255, 0);
} catch (e) {
_thrown_outer = true;
}
todo(!_thrown_outer, 'should not throw exception');
ok(!_thrown_outer, 'should not throw exception');
}