mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
94dcb604c5
--HG-- extra : rebase_source : f22329337aa120573efc13fa6ac0bb111ff0dba2
13 lines
270 B
HTML
13 lines
270 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body style="background:white">
|
|
<canvas id="c" width="500" height="500"></canvas>
|
|
<script>
|
|
var ctx = c.getContext('2d');
|
|
ctx.fillStyle = "black";
|
|
ctx.font = "50px sans-serif";
|
|
ctx.fillText("Hello", 200, 200);
|
|
</script>
|
|
</body>
|
|
</html>
|