| OLD | NEW |
| 1 | 1 |
| 2 class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend
eringContext2D" { | 2 class CanvasRenderingContext2D extends CanvasRenderingContext native "*CanvasRen
deringContext2D" { |
| 3 | 3 |
| 4 Object 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; |
| (...skipping 103 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 |