| Index: Source/core/html/canvas/CanvasRenderingContext2D.idl
|
| diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.idl b/Source/core/html/canvas/CanvasRenderingContext2D.idl
|
| index 7e3d07f61449ee37c6e6fdde04dca7b634aa899e..ed9ad0de1693b6d2a1f0b935690d98a0bca4dd7a 100644
|
| --- a/Source/core/html/canvas/CanvasRenderingContext2D.idl
|
| +++ b/Source/core/html/canvas/CanvasRenderingContext2D.idl
|
| @@ -76,6 +76,7 @@ interface CanvasRenderingContext2D : CanvasRenderingContext {
|
| [RaisesException] void arcTo(float x1, float y1, float x2, float y2, float radius);
|
| void rect(float x, float y, float width, float height);
|
| [RaisesException] void arc(float x, float y, float radius, float startAngle, float endAngle, [Default=Undefined] optional boolean anticlockwise);
|
| + [RaisesException] void ellipse(float x, float y, float radiusX, float radiusY, float rotation, float startAngle, float endAngle, boolean anticlockwise);
|
|
|
| void fill(optional CanvasWindingRule winding);
|
| void stroke();
|
|
|