mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
11 lines
223 B
HTML
11 lines
223 B
HTML
<!DOCTYPE HTML>
|
|
<canvas id="c"></canvas>
|
|
<script>
|
|
var ctx = c.getContext('2d');
|
|
ctx.scale(0,1);
|
|
ctx.fillStyle = "black";
|
|
ctx.fillRect(0, 0, 10, 10);
|
|
ctx.setTransform(1, 0, 0, 1, 0, 0);
|
|
ctx.fillRect(0, 0, 10, 10);
|
|
</script>
|