Implement CanvasRenderingContext2d.fillText's "unimplemented" message

This commit is contained in:
Bruno Bernardino 2017-08-09 12:34:12 +01:00
parent 1c9c0334ba
commit 2af828485f
No known key found for this signature in database
GPG key ID: C8019746F44687CD
6 changed files with 35 additions and 3 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<body>
<canvas id="tutorial" style="border:1px solid #d3d3d3"></canvas>
<script type="text/javascript">
canvas = document.getElementById('tutorial');
canvas.width = 200;
canvas.height = 200;
var ctx = canvas.getContext('2d');
ctx.fillText('Test', 10.0, 10.0);
ctx.fillText('Test truncated', 30.0, 20.0, 5.0);
</script>
</body>
</html>