зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
300 B
HTML
18 строки
300 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var ctx = document.getElementById("c").getContext('2d');
|
|
ctx.stroke();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<canvas id="c" width="800" style="overflow: -moz-hidden-unscrollable; transform: skewY(30rad);"></canvas>
|
|
</body>
|
|
</html>
|