Bug 817019 - Reftest: Test bounded ops with opaque canvas and complex radial gradient. r=jrmuizel

This commit is contained in:
Bas Schouten 2013-01-15 02:20:10 +01:00
parent 445908818b
commit 6f3afc79d3
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
function paintCanvas() {
var elem = document.getElementById("mycanv");
var ctx = elem.getContext('2d');
ctx.fillStyle = 'white';
ctx.fillRect(0, 0, 200, 200);
ctx.beginPath();
ctx.arc(150, 150, 100, 0, Math.PI * 2, true);
ctx.closePath();
ctx.clip();
// create radial gradient
var grd = ctx.createRadialGradient(110, 110, 42, 110, 110, 121);
grd.addColorStop(0, '#FFFFFF');
grd.addColorStop(1, '#E5E5E5');
ctx.fillStyle = grd;
// This should be completely clipped out!
ctx.fillRect(0, 0, 1, 1);
}
</script>
</head>
<body onload="paintCanvas();">
<canvas width=200 height=200 moz-opaque="true" id="mycanv"></canvas>
</body>
</html>

View File

@ -1740,3 +1740,4 @@ skip-if(B2G) == 814952-1.html 814952-1-ref.html
skip-if(B2G) == 818276-1.html 818276-1-ref.html
== 827577-1a.html 827577-1-ref.html
== 827577-1b.html 827577-1-ref.html
== 817019-1.html about:blank