mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
f18e1adc11
--HG-- extra : rebase_source : c7e2bdd935612251477b264ba64c65531916d0a3
14 lines
338 B
HTML
14 lines
338 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div style="width: 120px; height: 120px; overflow: hidden">
|
|
<canvas width="120" height="120" id="c"></canvas>
|
|
</div>
|
|
<script>
|
|
var ctx = document.getElementById("c").getContext("2d");
|
|
ctx.fillStyle = "green";
|
|
ctx.fillRect(0, 0, 120, 120);
|
|
</script>
|
|
</body>
|
|
</html>
|