Auto merge of #5945 - mmatyas:canvas_mxrotate, r=jdm

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/5945)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-05-06 08:53:56 -05:00
commit 3327fe3013
10 changed files with 15 additions and 45 deletions

View file

@ -32,7 +32,7 @@ interface CanvasRenderingContext2D {
// transformations (default transform is the identity matrix)
// attribute SVGMatrix currentTransform;
void scale(unrestricted double x, unrestricted double y);
//void rotate(unrestricted double angle);
void rotate(unrestricted double angle);
void translate(unrestricted double x, unrestricted double y);
void transform(unrestricted double a,
unrestricted double b,