summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/two-element-custom-property-animation-ref.html
blob: 37774e086f0ab9cc8b74fed23648df1f7da7b312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<body>
<canvas id ="canvas" width="200" height="400"></canvas>
<script>
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
context.fillStyle = 'green';
context.fillRect(0, 0, 100, 100);
context.fillStyle = 'rgb(100, 100, 0)';
context.fillRect(0, 200, 200, 200);
</script>
</body>
</html>