https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9d25998529f8dd62816fb99c5992638094b1aa91 authored by ffxbld on 28 September 2011, 19:45:27 UTC
Added tag FENNEC_7_0_1_BUILD1 for changeset 347b2b8651f4. CLOSED TREE a=release
Tip revision: 9d25998
aja-linear-3-ref.html
<!doctype html>
<!-- Derived from http://a-ja.net/newgrad.html -->
<html class="reftest-wait">
<head>
<script>
function doDraw() {
  var ctx = document.getElementById('canvas').getContext('2d');

  /* this gradient goes at an angle of -45deg through the center of
     the box */
  var grad = ctx.createLinearGradient(-25,25,125,175);
  grad.addColorStop(0, 'yellow');
  grad.addColorStop(1, 'blue');

  ctx.fillStyle = grad;
  ctx.fillRect(0,0,100,200);

  document.documentElement.removeAttribute('class');
}
</script>
</head>
<body onload="doDraw();">
<canvas id="canvas" width="100" height="200"></canvas>
</body>
</html>
back to top