| 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 47081025b31481acb85edf3d85c931d63a51846f..3641ae67fa42d4684700f95800d72de1b7d735b5 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| @@ -440,8 +440,7 @@ PaintLayerPainter::PaintResult PaintLayerPainter::paintLayerWithTransform(Graphi
|
| fragment.backgroundRect = paintingInfo.paintDirtyRect;
|
| fragment.paginationOffset = paginationOffset;
|
| fragments.append(fragment);
|
| - // TODO(crbug.com/638981): Is the conversion to int intentional?
|
| - paginationOffset += LayoutPoint(0, view->pageLogicalHeight().toInt());
|
| + paginationOffset += LayoutPoint(LayoutUnit(), view->pageLogicalHeight());
|
| }
|
| } else if (paginationLayer) {
|
| // FIXME: This is a mess. Look closely at this code and the code in Layer and fix any
|
|
|