Bug 848491 - Fuzz the redGradientBlueSolid analysis test a little bit to account for rasterising differences on Skia r=MattN

This commit is contained in:
George Wright 2013-06-27 16:10:08 -04:00
Родитель d29eda0f64
Коммит 1e94808fa1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -97,7 +97,7 @@ tests.push(function test_redGradientBlueSolid() {
ctx.fillStyle = "blue";
ctx.fillRect(9, 0, 7, 16);
}, function(actual, message) {
ok(actual > 0xFF0000 && actual < 0xFF0808, message);
ok(actual >= 0xFF0000 && actual <= 0xFF0808, message);
}, "redGradientBlueSolid analysis returns redish");
});