blob: ed7f7a769977a9cb5c8f8f5ab9c0471b192258c6 [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.path.arc.zeroradius</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<link rel="prev" href="2d.path.arc.negative.html" title="2d.path.arc.negative">
<link rel="next" href="2d.path.arc.scale.1.html" title="2d.path.arc.scale.1">
<body class="show_output">
<p>
<a href="2d.path.arc.negative.html" accesskey="p" title="[p] 2d.path.arc.negative">&lt;</a>
<a href="index.html">[index]</a>
<a href="2d.path.arc.scale.1.html" accesskey="n" title="[n] 2d.path.arc.scale.1">&gt;</a>
<h1><a href="index.2d.html">2d</a>.<a href="index.2d.path.html">path</a>.<a href="index.2d.path.arc.html">arc</a>.zeroradius</h1>
<p class="desc">arc() with zero radius draws a line to the start point</p>
<div class="refs">References:
<ul>
<li><a href="spec.html#testrefs.2d.path.arc.zero">2d.path.arc.zero</a>
</ul>
</div>
<p class="output">Actual output:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<p class="output expectedtext">Expected output:<p><img src="green-100x50.png" class="output expected" id="expected" alt="">
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
ctx.fillStyle = '#f00'
ctx.fillRect(0, 0, 100, 50);
ctx.lineWidth = 50;
ctx.strokeStyle = '#0f0';
ctx.beginPath();
ctx.moveTo(0, 25);
ctx.arc(200, 25, 0, 0, Math.PI, true);
ctx.stroke();
_assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
});
</script>