mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
16 lines
274 B
HTML
16 lines
274 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<canvas id ="output" width="300" height="400"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById('output');
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
ctx.beginPath();
|
|
ctx.roundRect(10, 10, 100, 100, [20]);
|
|
ctx.fill();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|