https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 22bdae4f35ac7d906b6ac24987ecd2b2031f34d8 authored by ffxbld on 18 June 2013, 10:28:20 UTC
Added FENNEC_22_0_RELEASE FENNEC_22_0_BUILD1 tag(s) for changeset 7fd65c0d7c5d. DONTBUILD CLOSED TREE a=release
Tip revision: 22bdae4
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