| Index: Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.cpp b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| index 104d5f972556ae2dfda507a9acbb4b6453590fe0..7a807074280989468a676394d4216d2bc90e94fa 100644
|
| --- a/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| +++ b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| @@ -1452,7 +1452,7 @@ static void drawVideo(GraphicsContext* c, CanvasImageSource* imageSource, FloatR
|
| static void drawImageOnContext(GraphicsContext* c, CanvasImageSource* imageSource, Image* image, const FloatRect& srcRect, const FloatRect& dstRect)
|
| {
|
| if (!imageSource->isVideoElement()) {
|
| - c->drawImage(image, dstRect, srcRect, c->compositeOperation(), c->blendModeOperation());
|
| + c->drawImage(image, dstRect, srcRect, c->compositeOperator(), c->blendModeOperation());
|
| } else {
|
| drawVideo(c, static_cast<HTMLVideoElement*>(imageSource), srcRect, dstRect);
|
| }
|
|
|