| OLD | NEW |
| 1 | 1 |
| 2 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend
eringContext2D" { | 2 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend
eringContext2D" { |
| 3 | 3 |
| 4 Dynamic fillStyle; | 4 Object fillStyle; |
| 5 | 5 |
| 6 String font; | 6 String font; |
| 7 | 7 |
| 8 num globalAlpha; | 8 num globalAlpha; |
| 9 | 9 |
| 10 String globalCompositeOperation; | 10 String globalCompositeOperation; |
| 11 | 11 |
| 12 String lineCap; | 12 String lineCap; |
| 13 | 13 |
| 14 String lineJoin; | 14 String lineJoin; |
| 15 | 15 |
| 16 num lineWidth; | 16 num lineWidth; |
| 17 | 17 |
| 18 num miterLimit; | 18 num miterLimit; |
| 19 | 19 |
| 20 num shadowBlur; | 20 num shadowBlur; |
| 21 | 21 |
| 22 String shadowColor; | 22 String shadowColor; |
| 23 | 23 |
| 24 num shadowOffsetX; | 24 num shadowOffsetX; |
| 25 | 25 |
| 26 num shadowOffsetY; | 26 num shadowOffsetY; |
| 27 | 27 |
| 28 Dynamic strokeStyle; | 28 Object strokeStyle; |
| 29 | 29 |
| 30 String textAlign; | 30 String textAlign; |
| 31 | 31 |
| 32 String textBaseline; | 32 String textBaseline; |
| 33 | 33 |
| 34 List webkitLineDash; | 34 List webkitLineDash; |
| 35 | 35 |
| 36 num webkitLineDashOffset; | 36 num webkitLineDashOffset; |
| 37 | 37 |
| 38 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc
kwise) native; | 38 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc
kwise) native; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 void stroke() native; | 116 void stroke() native; |
| 117 | 117 |
| 118 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n
ative; | 118 void strokeRect(num x, num y, num width, num height, [num lineWidth = null]) n
ative; |
| 119 | 119 |
| 120 void strokeText(String text, num x, num y, [num maxWidth = null]) native; | 120 void strokeText(String text, num x, num y, [num maxWidth = null]) native; |
| 121 | 121 |
| 122 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; | 122 void transform(num m11, num m12, num m21, num m22, num dx, num dy) native; |
| 123 | 123 |
| 124 void translate(num tx, num ty) native; | 124 void translate(num tx, num ty) native; |
| 125 } | 125 } |
| OLD | NEW |