text-emoji-notref.html 595 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Test for Unicode emoji in canvas</title>
  5. <script type="text/javascript">
  6. function test(canvasID) {
  7. var canvas = document.getElementById(canvasID);
  8. var ctx = canvas.getContext('2d');
  9. var str = 'Hello';
  10. ctx.font = '2em sans-serif';
  11. ctx.fillStyle = 'black';
  12. ctx.textAlign = 'left';
  13. ctx.textBaseline = 'top';
  14. ctx.fillText(str, 10, 10);
  15. };
  16. </script>
  17. </head>
  18. <body>
  19. <div lang="en" style="margin:20px; height:100px;">
  20. <canvas id="c1" width="400" height="50"></canvas>
  21. <script type="text/javascript">
  22. test("c1");
  23. </script>
  24. </div>
  25. </body>
  26. </html>