[Webkit-unassigned] [Bug 17954] Canvas arc() with radius of 0 throws exception

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 19 12:12:47 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=17954





------- Comment #1 from jresig at mozilla.com  2008-03-19 12:12 PDT -------
For posterity, here's the reduction:

<canvas width="100" height="100" id="canvas"></canvas>
<script>window.onload = function(){
var c = document.getElementsByTagName("canvas")[0];
var context = c.getContext("2d");
context.arc( 10, 10, 0, 0, 180, false );
};</script>


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list