[Bug 13277] canvas '2d' context needs a getter for current point in path

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

Jay Munro <jaymunro@microsoft.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

--- Comment #5 from Jay Munro <jaymunro@microsoft.com> ---
Maybe something like this: 

//  System current path point
interface context {
readonly attribute double  currentPointX;
readonly attribute double  currentPointY;
}

// Path2D current point
interface Path2D {
readonly attribute double  currentPointX;
readonly attribute double  currentPointY; 
}


currentX = context.currentPointX;
currentY = context.currentPointY;
Return the current starting point of a system subpath.


currentPathX = Path2D.currentPointX;
currentPathY = Path2D.currentPointY;
Return the current starting point of a path object's subpath.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Friday, 20 June 2014 22:22:47 UTC