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