mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16dbeaf8ed
--HG-- extra : rebase_source : 06afe9bc1401f53a6e6929a5063fd4af3da699cc
35 lines
720 B
HTML
35 lines
720 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
window.onload = function() {
|
|
var ctx = document.getElementById("c1").getContext("2d");
|
|
|
|
ctx.lineWidth = 5;
|
|
|
|
ctx.mozDash = [ 5, 10 ]; // 5 on, 10 off
|
|
ctx.moveTo(50, 50);
|
|
ctx.lineTo(250, 50);
|
|
ctx.stroke();
|
|
ctx.beginPath();
|
|
|
|
ctx.mozDashOffset = 5;
|
|
ctx.moveTo(50, 100);
|
|
ctx.lineTo(250, 100);
|
|
ctx.stroke();
|
|
ctx.beginPath();
|
|
|
|
ctx.mozDashOffset = 5;
|
|
ctx.mozDash = [ 5 ]; // 5 on, 5 off
|
|
ctx.moveTo(50, 150);
|
|
ctx.lineTo(250, 150);
|
|
ctx.stroke();
|
|
ctx.beginPath();
|
|
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="padding: 0px; margin: 0px;">
|
|
<div><canvas id="c1" width="300" height="300"></canvas></div>
|
|
</body>
|
|
</html>
|