author | Matt Woodrow <mwoodrow@mozilla.com> |
Fri, 18 Nov 2011 17:00:38 +1300 | |
changeset 80438 | 7edace028a6bc9dfad638a71bd9458308c551813 |
parent 80437 | ec24fad0eb6d87438c6a7bc47354a38e249010ee |
child 80439 | 4af4c72eafa7904df588f9fbe3315f5965e90ee6 |
push id | 21491 |
push user | bmo@edmorley.co.uk |
push date | Fri, 18 Nov 2011 08:46:29 +0000 |
treeherder | mozilla-central@447556784745 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jrmuizel |
bugs | 702517 |
milestone | 11.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/content/canvas/test/test_canvas.html +++ b/content/canvas/test/test_canvas.html @@ -11992,17 +11992,17 @@ isPixel(ctx, 50,25, 0,255,0,255, 0); isPixel(ctx, 55,19, 0,255,0,255, 0); isPixel(ctx, 55,20, 0,255,0,255, 0); isPixel(ctx, 55,21, 0,255,0,255, 0); isPixel(ctx, 64,22, 0,255,0,255, 0); isPixel(ctx, 65,21, 0,255,0,255, 0); isPixel(ctx, 72,28, 0,255,0,255, 0); isPixel(ctx, 73,27, 0,255,0,255, 0); isPixel(ctx, 78,36, 0,255,0,255, 0); -isPixel(ctx, 79,35, 0,255,0,255, 0); +isPixel(ctx, 79,35, 0,255,0,255, IsAzureSkia() ? 1 : 0); isPixel(ctx, 80,44, 0,255,0,255, 0); isPixel(ctx, 80,45, 0,255,0,255, 0); isPixel(ctx, 80,46, 0,255,0,255, 0); } </script> @@ -12039,21 +12039,21 @@ ctx.beginPath(); ctx.moveTo(10, 25); ctx.arcTo(75, 25, 75, 60, 20); ctx.stroke(); isPixel(ctx, 50,25, 0,255,0,255, 0); isPixel(ctx, 55,19, 0,255,0,255, 0); isPixel(ctx, 55,20, 0,255,0,255, 0); isPixel(ctx, 55,21, 0,255,0,255, 0); -isPixel(ctx, 64,22, 0,255,0,255, 0); +isPixel(ctx, 64,22, 0,255,0,255, IsAzureSkia() ? 1 : 0); isPixel(ctx, 65,21, 0,255,0,255, 0); isPixel(ctx, 72,28, 0,255,0,255, 0); -isPixel(ctx, 73,27, 0,255,0,255, 0); -isPixel(ctx, 78,36, 0,255,0,255, 0); +isPixel(ctx, 73,27, 0,255,0,255, IsAzureSkia() ? 1 : 0); +isPixel(ctx, 78,36, 0,255,0,255, IsAzureSkia() ? 1 : 0); isPixel(ctx, 79,35, 0,255,0,255, 0); isPixel(ctx, 80,44, 0,255,0,255, 0); isPixel(ctx, 80,45, 0,255,0,255, 0); isPixel(ctx, 80,46, 0,255,0,255, 0); } </script> @@ -19205,17 +19205,17 @@ ctx.beginPath(); ctx.moveTo(pts[0][0], pts[0][1]); for (var i = 0; i < pts.length; ++i) ctx.lineTo(pts[i][0], pts[i][1]); ctx.fill(); isPixel(ctx, 21,11, 0,255,0,255, 0); isPixel(ctx, 79,11, 0,255,0,255, 0); isPixel(ctx, 21,39, 0,255,0,255, 0); isPixel(ctx, 79,39, 0,255,0,255, 0); -isPixel(ctx, 39,19, 0,255,0,255, 0); +isPixel(ctx, 39,19, 0,255,0,255, IsAzureSkia() ? 1 : 0); isPixel(ctx, 61,19, 0,255,0,255, 0); isPixel(ctx, 39,31, 0,255,0,255, 0); isPixel(ctx, 61,31, 0,255,0,255, 0); } </script> @@ -19413,17 +19413,17 @@ ctx.beginPath(); ctx.moveTo(pts[0][0], pts[0][1]); for (var i = 0; i < pts.length; ++i) ctx.lineTo(pts[i][0], pts[i][1]); ctx.fill(); isPixel(ctx, 21,11, 0,255,0,255, 0); isPixel(ctx, 79,11, 0,255,0,255, 0); isPixel(ctx, 21,39, 0,255,0,255, 0); isPixel(ctx, 79,39, 0,255,0,255, 0); -isPixel(ctx, 39,19, 0,255,0,255, 0); +isPixel(ctx, 39,19, 0,255,0,255, IsAzureSkia() ? 1 : 0); isPixel(ctx, 61,19, 0,255,0,255, 0); isPixel(ctx, 39,31, 0,255,0,255, 0); isPixel(ctx, 61,31, 0,255,0,255, 0); } </script>