Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Unified Diff: Source/core/html/ImageDocument.cpp

Issue 610423004: Preserve fractional scroll offset for JS scrolling API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLBodyElement.cpp ('k') | Source/core/rendering/RenderBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/ImageDocument.cpp
diff --git a/Source/core/html/ImageDocument.cpp b/Source/core/html/ImageDocument.cpp
index a6783d8111c4ee2f3224112a412277535e0e921b..9a5c738242d3f499ef634f535fceed2c86f54044 100644
--- a/Source/core/html/ImageDocument.cpp
+++ b/Source/core/html/ImageDocument.cpp
@@ -264,12 +264,12 @@ void ImageDocument::imageClicked(int x, int y)
updateLayout();
- float scale = this->scale();
+ double scale = this->scale();
- int scrollX = static_cast<int>(x / scale - (float)frame()->view()->width() / 2);
- int scrollY = static_cast<int>(y / scale - (float)frame()->view()->height() / 2);
+ double scrollX = x / scale - static_cast<double>(frame()->view()->width()) / 2;
+ double scrollY = y / scale - static_cast<double>(frame()->view()->height()) / 2;
- frame()->view()->setScrollPosition(IntPoint(scrollX, scrollY));
+ frame()->view()->setScrollPosition(DoublePoint(scrollX, scrollY));
}
}
« no previous file with comments | « Source/core/html/HTMLBodyElement.cpp ('k') | Source/core/rendering/RenderBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698