mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 817019 - Reftest: Test bounded ops with opaque canvas and complex radial gradient. r=jrmuizel
This commit is contained in:
parent
1cd02f2da7
commit
0521d72220
33
layout/reftests/bugs/817019-1.html
Normal file
33
layout/reftests/bugs/817019-1.html
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user