Re: [whatwg] New URL Standard

2012-09-22 Thread Alexandre Morgaut
Thanks Anne, I'd appreciate to be able to easily get a URLUtil interface from a string UTL without doing some nasty hacks I have a ew questions Would the URLUtil interface replace the URL decomposition IDL attributes of the Location interface? -

[whatwg] [canvas] CanvasRenderingContext2D with addPath, currentPath

2012-09-22 Thread Dirk Schulze
Hi, Would it be possible to extend CanvasRenderingContext2D with the functions: void addPath(Path path); - which adds a Path object to the current path on Canvas? attribute Path currentPath; - that returns a copy of the current path, or let you replace the current path with another Path object

Re: [whatwg] [canvas] Path object

2012-09-22 Thread Charles Pritchard
We proposed this in the public-canvas-api working group. There may be some tricky parts with transforms. From an implementation perspective, createPath (returns opaque CanvasPath) and beginPath(CanvasPath) is the easiest and most direct. The tricky part happens when you're in a loop with