| Index: third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| index 86176fa7819076bb8bebf5db97cc9b96570ad85a..3209ca91a45851795027102d26aa0eeb31f5de54 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| @@ -501,7 +501,8 @@ PaintLayerPainter::PaintResult PaintLayerPainter::paintLayerWithTransform(Graphi
|
| fragment.backgroundRect = paintingInfo.paintDirtyRect;
|
| fragment.paginationOffset = paginationOffset;
|
| fragments.append(fragment);
|
| - paginationOffset += LayoutPoint(0, view->pageLogicalHeight());
|
| + // TODO(crbug.com/638981): Is the conversion to int intentional?
|
| + paginationOffset += LayoutPoint(0, view->pageLogicalHeight().toInt());
|
| }
|
| } else if (paginationLayer) {
|
| // FIXME: This is a mess. Look closely at this code and the code in Layer and fix any
|
|
|