summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/animations/background-color-animation-fallback-missing-0-percent-ref.html
blob: 7a0046f27b2bd432944e61aee3bb900300093019 (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, 100, 100)';
  ctx.fillRect(0, 0, 100, 100);
</script>