mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
277 B
HTML
14 lines
277 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id="c" width="5000" height="20000">
|
|
</canvas>
|
|
<script>
|
|
var ctxt = document.getElementById('c').getContext('2d');
|
|
ctxt.strokeStyle = "Red";
|
|
ctxt.font = "bold 16px Arial";
|
|
ctxt.strokeText('Hello World!', 100, 100);
|
|
</script>
|
|
</body>
|
|
</html>
|