mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a5d03b307c
--HG-- extra : rebase_source : b2761827d90ceb99818b7beda5bcc596de90d7a3
11 lines
214 B
HTML
11 lines
214 B
HTML
<!doctype HTML>
|
|
<html>
|
|
<body>
|
|
<canvas id="c" width="10000" height="10000"></canvas>
|
|
<script>
|
|
var ctx = document.getElementById("c").getContext("2d");
|
|
ctx.fillText("Hello world!", 50, 50);
|
|
</script>
|
|
</body>
|
|
</html>
|