2 <p>Test canvas arc() start / end points when the arc is
>=
360 degrees. The result should be a circle with two line segments connected to the left hand side, towards the top left and bottom left corners.
3 <canvas id=
"mycanvas" width=
"400" height=
"400"></canvas>
6 testRunner
.dumpAsTextWithPixelResults();
8 var canvas
= document
.getElementById('mycanvas');
9 var ctx
= canvas
.getContext('2d');
10 var cx
= 200, cy
= 200, radius
= 100;
14 ctx
.arc(cx
, cy
, radius
, -Math
.PI
, Math
.PI
, false);