mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
405 B
HTML
19 lines
405 B
HTML
<!doctype html>
|
|
<head>
|
|
|
|
<body>
|
|
<canvas id="mycanvas" width="200" height="600"></canvas>
|
|
|
|
<script type="text/javascript">
|
|
var cx = document.getElementById('mycanvas').getContext('2d');
|
|
cx.beginPath();
|
|
cx.rect(10, 10, 50, 50);
|
|
cx.clip();
|
|
cx.beginPath();
|
|
cx.rect(0, 0, 50, 50);
|
|
cx.shadowColor = "black";
|
|
cx.shadowOffsetX = 10;
|
|
cx.shadowOffsetY = 10;
|
|
cx.fill();
|
|
</script>
|