https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c06f3223ffeb6240f19871a4b507981784723ab0 authored by ffxbld on 15 March 2014, 15:34:08 UTC
Added FIREFOX_24_4_0esr_RELEASE FIREFOX_24_4_0esr_BUILD1 tag(s) for changeset 1dc61f927007. DONTBUILD CLOSED TREE a=release
Tip revision: c06f322
linear-keywords-1-ref.html
<html xmlns="http://www.w3.org/1999/xhtml" 
      class="reftest-wait">
<head>
<script>
function doDraw() {
  var ctx = document.getElementById('canvas').getContext('2d');

  var grad = ctx.createLinearGradient(0,0,300,300);
  grad.addColorStop(0, '#0000ff');
  grad.addColorStop(1, '#000000');

  ctx.fillStyle = grad;
  ctx.fillRect(0,0,300,300);

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

back to top