blob: 71060e45e55e0eb5cf0a8b41e3bf30cb877e20b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!doctype html>
<script src="resources/repaint.js"></script>
<body onload="runRepaintTest();">
<canvas id="canvas-source-in" width="100" height="100"></canvas>
<canvas id="canvas-copy" width="100" height="100"></canvas>
<script>
var compositeTypes = ['source-in','copy'];
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
for (i = 0; i < compositeTypes.length; i++) {
var canvas = document.getElementById('canvas-' + compositeTypes[i]);
var ctx = canvas.getContext('2d');
ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 100, 100);
}
function repaintTest()
{
for (i = 0; i < compositeTypes.length; i++) {
var canvas = document.getElementById('canvas-' + compositeTypes[i]);
var ctx = canvas.getContext('2d');
ctx.globalCompositeOperation = compositeTypes[i];
ctx.fillStyle = '#00f';
ctx.fillRect(40, 40, 20, 20);
}
}
</script>
</body>
|