| Index: tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate b/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate
|
| index 8aa13d16e384f2397a945925e7e74127fdab728a..1fca45dffcb07ce9ee542a320c3e9c7047e276b1 100644
|
| --- a/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate
|
| @@ -62,7 +62,7 @@ $!MEMBERS
|
| * will allow, the image will be clipped to fit the available space.
|
| *
|
| * CanvasElement canvas = new CanvasElement(width: 600, height: 600);
|
| - * CanvasRenderingContext2D ctx = canvas.context2d;
|
| + * CanvasRenderingContext2D ctx = canvas.context2D;
|
| * ImageElement img = document.query('img');
|
| * img.width = 100;
|
| * img.height = 100;
|
| @@ -140,7 +140,7 @@ $endif
|
| * available space.
|
| *
|
| * CanvasElement canvas = new CanvasElement(width: 600, height: 600);
|
| - * CanvasRenderingContext2D ctx = canvas.context2d;
|
| + * CanvasRenderingContext2D ctx = canvas.context2D;
|
| * ImageElement img = document.query('img');
|
| *
|
| * ctx.drawImage(img, 100, 100);
|
| @@ -181,7 +181,7 @@ $endif
|
| * will allow, the image will be clipped to fit the available space.
|
| *
|
| * CanvasElement canvas = new CanvasElement(width: 600, height: 600);
|
| - * CanvasRenderingContext2D ctx = canvas.context2d;
|
| + * CanvasRenderingContext2D ctx = canvas.context2D;
|
| * ImageElement img = document.query('img');
|
| * img.width = 100;
|
| * img.height = 100;
|
|
|