WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED INVALID
13666
Canvas: fill() blows away the current path
https://bugs.webkit.org/show_bug.cgi?id=13666
Summary
Canvas: fill() blows away the current path
Ian 'Hixie' Hickson
Reported
2007-05-10 15:10:06 PDT
STEPS TO REPRODUCE 1. Create a path. 2. Call fillRect(). 3. Stroke the path. ACTUAL RESULTS The stroke doesn't work. EXPECTED RESULTS Until you call beginPath() or you change the size of the canvas, the path shouldn't be touched. TESTCASE:
http://www.hixie.ch/tests/adhoc/html/canvas/020.html
Attachments
Add attachment
proposed patch, testcase, etc.
Mark Rowe (bdash)
Comment 1
2007-10-21 19:24:25 PDT
Ian, the test case does not appear to match the description of the bug. Did you link to the right test case?
Ian 'Hixie' Hickson
Comment 2
2007-10-22 14:01:09 PDT
Looks like it's fill(), not fillRect(), that blows away the path.
David Jones
Comment 3
2008-08-01 13:51:30 PDT
Well, Hixie's test still fails, but the bug is mis-diagnosed. fill() does not blow away the path, as it is still available for later stroking. As <a href="data:text/html;base64,PCFET0NUWVBFIEhUTUw+CjxodG1sPgogPGhlYWQ+CiAgPHRpdGxlPkZpbGxpbmcgYW5kIFN0cm9raW5nPC90aXRsZT4KIDwvaGVhZD4KIDxib2R5PgogIDxwPlRoZXJlIHNob3VsZCBiZSBhIHJlZCBzcXVhcmUgd2l0aCBhIHRoaWNrIG9yYW5nZSBib3JkZXIuPC9wPgogIDxkaXY+PGNhbnZhcyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIKY2xhc3M9ImJlZm9yZSI+RkFJTDwvY2FudmFzPjwvZGl2PgogIDxzY3JpcHQ+CiAgIHZhciBjYW52YXMgPSBkb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZSgnY2FudmFzJylbMF07CiAgIHZhciBjb250ZXh0ID0gY2FudmFzLmdldENvbnRleHQoJzJkJyk7CiAgIGNvbnRleHQuZmlsbFN0eWxlID0gJ3JlZCc7CiAgIGNvbnRleHQuc3Ryb2tlU3R5bGUgPSAnb3JhbmdlJwogICBjb250ZXh0LmxpbmVXaWR0aCA9ICcxMCcKICAgY29udGV4dC5yZWN0KDUwLCA1MCwgMTAwLCAxMDApOwogICBjb250ZXh0LmZpbGwoKTsKICAgY29udGV4dC5zdHJva2UoKTsKICA8L3NjcmlwdD4KIDwvYm9keT4KPC9odG1sPgo=">this test</a> shows.
David Jones
Comment 4
2008-08-01 14:02:29 PDT
The testcase Hixie gives,
http://www.hixie.ch/tests/adhoc/html/canvas/020.html
, is bogus. It is creating a path using rect() and then fill()ing it 4 times, changing the CTM by using translate() before each fill. Apparently the intention is that the rectangle is filled in four different positions. But this is not how the CTM and the path interact, the CTM operates on the rectangle co-ordinates when they are specified by rect(), not later on when the path is filled (see HTML5 4.7.11.1.8
http://www.whatwg.org/specs/web-apps/current-work/#complex
). Thus, at least in this regard, WebKit is behaving as per the "spec".
David Jones
Comment 5
2008-08-01 14:08:11 PDT
Moreover, fillRect() does not appear to disturbed the path: <!DOCTYPE HTML> <html> <head> <title>Filling and Stroking</title> </head> <body> <p>There should be a red cross.</p> <div><canvas width="200" height="200" class="before">FAIL</canvas></div> <script> var canvas = document.getElementsByTagName('canvas')[0]; var context = canvas.getContext('2d'); context.fillStyle = 'red'; context.rect(75, 25, 50, 150); context.fillRect(25,75,150,50) context.fill(); </script> </body> </html>
Ian 'Hixie' Hickson
Comment 6
2008-08-01 16:47:20 PDT
Yeah this is bogus, the spec changed since I wrote those tests. Sorry.
David Jones
Comment 7
2008-08-02 15:01:03 PDT
Yes, i did wonder if the spec had changed. It occurred to me this morning that your test, 020.html , could be used as a test that changing the CTM does _not_ affect the path. In other words simply change the text to "there should be a green square displayed in the upper left corner of a red square".
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug