mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
12 lines
294 B
HTML
12 lines
294 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html reftest-zoom="2.0">
|
||
|
<body style="background: black">
|
||
|
<canvas width="100" height="100" id="c"></canvas>
|
||
|
<script type="text/javascript">
|
||
|
var cx = document.getElementById("c").getContext("2d");
|
||
|
cx.fillStyle = "#00ff00";
|
||
|
cx.fillRect(0, 0, 100, 100);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|