<!DOCTYPE html><!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --><metacharset="UTF-8"><title>Canvas test: 2d.path.arc.zeroradius</title><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script><scriptsrc="/html/canvas/resources/canvas-tests.js"></script><linkrel="stylesheet"href="/html/canvas/resources/canvas-tests.css"><bodyclass="show_output"><h1>2d.path.arc.zeroradius</h1><pclass="desc">arc() with zero radius draws a line to the start point</p><pclass="output">Actual output:</p><canvasid="c"class="output"width="100"height="50"><pclass="fallback">FAIL (fallback content)</p></canvas><pclass="output expectedtext">Expected output:<p><imgsrc="/images/green-100x50.png"class="output expected"id="expected"alt=""><ulid="d"></ul><script>vart=async_test("arc() with zero radius draws a line to the start point");_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);});</script>