[Bug 11739] I would like to see a clearPath or clearStroke functions similar to clearRect but to clear lines, not just full rectangles

https://www.w3.org/Bugs/Public/show_bug.cgi?id=11739

--- Comment #7 from Ian 'Hixie' Hickson <ian@hixie.ch> 2012-02-29 22:45:06 UTC ---
I guess that makes sense.

So basically this is just a shorthand for:

   .save();
   .clip();
   .setTranform(identity)
   .clearRect(entire canvas)
   .restore();

...?

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 29 February 2012 22:45:08 UTC