https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2184b6756754ce9727f02b314ff13701993a5ac6 authored by ffxbld on 17 March 2017, 05:39:03 UTC
Added FENNEC_52_0_1_RELEASE FENNEC_52_0_1_BUILD1 tag(s) for changeset c2473a54d5d4. DONTBUILD CLOSED TREE a=release
Tip revision: 2184b67
text-no-frame-2-test.html
<!DOCTYPE HTML>
<html>
<head>
<title>Test to ensure non-framed canvas inherits properties</title>
</head>
<body>
<div style="font: 20px sans-serif;">
<div style="display: none;">		
<canvas id="c" width="512" height="256"></canvas>
</div>
<canvas id="d" width="512" height="256"></canvas>
</div>
<script type="text/javascript">
  var canvas = document.getElementById('c');
  var ctx = canvas.getContext('2d');

  var str = 'BLEARGH!';
  ctx.font = '1em sans-serif';
  ctx.fillStyle = 'black';
  ctx.textAlign = 'center';
  ctx.fillText(str, 256, 128);

  var canvas2 = document.getElementById('d');
  var ctx = canvas2.getContext('2d');

  ctx.drawImage(canvas, 0, 0);
</script>
</body>
</html>
back to top