mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
16 lines
255 B
HTML
16 lines
255 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var ctx = document.querySelector("canvas").getContext('2d');
|
|
ctx.strokeRect(0.5, 1, 2, 3);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"><canvas width="100" height="100"></canvas></body>
|
|
</html>
|