| Index: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| index c599cbcd420dd7a089d214fcb6f0779c207c2079..2f37d674fa525e6738bdae13bcbdcc2130f2cefc 100644
|
| --- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| +++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2D.idl
|
| @@ -25,8 +25,16 @@
|
|
|
| // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvasrenderingcontext2d
|
|
|
| +// The spec specifies:
|
| +// typedef (HTMLImageElement or
|
| +// SVGImageElement) HTMLOrSVGImageElement;
|
| +// but there's a problem with our IDL code generator for typedef-in-typedef,
|
| +// so we split this into two for simplicity. There's no difference from a user
|
| +// perspective.
|
| +
|
| typedef (CSSImageValue or
|
| HTMLImageElement or
|
| + SVGImageElement or
|
| HTMLVideoElement or
|
| HTMLCanvasElement or
|
| ImageBitmap or
|
|
|