| 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..2047fca0e33cc3241b8544916056db62893cded4 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->compositeOperationDeprecated(), c->blendModeOperation());
|
| } else {
|
| drawVideo(c, static_cast<HTMLVideoElement*>(imageSource), srcRect, dstRect);
|
| }
|
|
|