зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
366 B
HTML
20 строки
366 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
canvas = document.createElement('canvas');
|
|
document.body.appendChild(canvas);
|
|
ctx = canvas.getContext('2d');
|
|
|
|
canvas.width = 1000;
|
|
canvas.height = 1000;
|
|
ctx.translate(420.31465167323177, 40.531991340689785);
|
|
|
|
|
|
ctx.strokeStyle = 'red';
|
|
ctx.lineWidth = 3;
|
|
ctx.setLineDash([24, 12]);
|
|
ctx.strokeRect(15, -441, 60, 420);
|
|
|
|
</script>
|