Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html |
index a307dd8ad45a63619fc73c6ecd7452afdb8e2122..e1febb67c09c67b7439e8232787976ec746a9390 100644 |
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html |
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-out-of-bounds-src.html |
@@ -46,6 +46,7 @@ function imageBitmapCallback(ctx) { |
var ctx = ctx; |
return function(imageBitmap) { |
pending--; |
+ // ctx.drawImage(imageBitmap, 0, 0, 50, 50); |
ctx.drawImage(imageBitmap, -100, -100, 300, 300, -25, -25, 300, 300); |
ctx.drawImage(imageBitmap, -100, -100, 200, 200, -25, -25, 100, 100); |
ctx.drawImage(imageBitmap, 0, -100, 100, 200, 75, -25, 100, 100); |