| Index: third_party/WebKit/Source/core/input/EventHandler.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| index 1f84d71d57abbb8d51976a282498b6cb854f2930..8f461d1ae2578172bc4ab9d61b64b0f11d04b5c8 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| @@ -815,7 +815,7 @@ OptionalCursor EventHandler::selectCursor(const HitTestResult& result)
|
| // Get hotspot and convert from logical pixels to physical pixels.
|
| IntPoint hotSpot = (*cursors)[i].hotSpot();
|
| hotSpot.scale(scale, scale);
|
| - IntSize size = cachedImage->imageForLayoutObject(layoutObject)->size();
|
| + IntSize size = cachedImage->image()->size();
|
| if (cachedImage->errorOccurred())
|
| continue;
|
| // Limit the size of cursors (in UI pixels) so that they cannot be
|
| @@ -824,7 +824,7 @@ OptionalCursor EventHandler::selectCursor(const HitTestResult& result)
|
| if (size.width() > maximumCursorSize || size.height() > maximumCursorSize)
|
| continue;
|
|
|
| - Image* image = cachedImage->imageForLayoutObject(layoutObject);
|
| + Image* image = cachedImage->image();
|
| // Ensure no overflow possible in calculations above.
|
| if (scale < minimumCursorScale)
|
| continue;
|
|
|