| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index fcfeafc96e23a253ac2faaf08deb0f86d9f2e559..31a01ed56029bd2910ffee3cab1aa4a169d8a942 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -1383,9 +1383,10 @@ class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend
|
| @Creates('ImageData|=Object')
|
| _getImageData_1(sx, sy, sw, sh) native;
|
|
|
| + @JSName('getLineDash')
|
| @DomName('CanvasRenderingContext2D.getLineDash')
|
| @DocsEditable()
|
| - List<num> getLineDash() native;
|
| + List<num> _getLineDash() native;
|
|
|
| @DomName('CanvasRenderingContext2D.isPointInPath')
|
| @DocsEditable()
|
| @@ -1747,6 +1748,9 @@ class CanvasRenderingContext2D extends CanvasRenderingContext native "CanvasRend
|
| 'typeof #.lineDashOffset != "undefined" ? #.lineDashOffset = # : '
|
| '#.webkitLineDashOffset = #', this, this, value, this, value);
|
|
|
| + @DomName('CanvasRenderingContext2D.getLineDash')
|
| + List<num> getLineDash() => _getLineDash();
|
| +
|
| /**
|
| * Draws text to the canvas.
|
| *
|
|
|