Index: third_party/WebKit/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp |
diff --git a/third_party/WebKit/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp b/third_party/WebKit/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp |
index 43bb1eabad9834fa3c9196ac1a30caa1d2997265..9b85d40e96bf03ca4348082eeaea08e5077b2f2c 100644 |
--- a/third_party/WebKit/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp |
+++ b/third_party/WebKit/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp |
@@ -1863,10 +1863,7 @@ bool CompositedDeprecatedPaintLayerMapping::isDirectlyCompositedImage() const |
if (!image->isBitmapImage()) |
return false; |
- // FIXME: We should be able to handle bitmap images using direct compositing |
- // no matter what image-orientation value. See crbug.com/502267 |
- if (imageLayoutObject->style()->respectImageOrientation() != RespectImageOrientation) |
- return true; |
+ return true; |
Noel Gordon
2015/09/25 00:12:19
Very cool, and I can see why layout tests are pass
|
} |
return false; |