mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
19 lines
362 B
HTML
19 lines
362 B
HTML
<!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>
|