summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/animations/two-background-color-animation-diff-length2-ref.html
blob: 44e416fe8f2e4e4665365e6a32e0197dbed63a79 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<body>
  <canvas id="canvas" width="100" height="100"></canvas>
</body>
<script>
  var canvas = document.getElementById('canvas');
  var ctx = canvas.getContext('2d');
  ctx.fillStyle = 'rgb(0, 0, 199)';
  ctx.fillRect(0, 0, 100, 100);
</script>