| Index: third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| index 40d75eb10c8285bd1c2b218b66830a5e6661d4b4..02f7e63b1905fccf9ad96722a237614fedd1779a 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h
|
| @@ -211,9 +211,9 @@ public:
|
| else
|
| setY(left);
|
| }
|
| - int pixelSnappedLogicalLeft() const { return logicalLeft(); }
|
| + int pixelSnappedLogicalLeft() const { return logicalLeft().toInt(); }
|
| int pixelSnappedLogicalRight() const { return logicalRight().ceil(); }
|
| - int pixelSnappedLogicalTop() const { return logicalTop(); }
|
| + int pixelSnappedLogicalTop() const { return logicalTop().toInt(); }
|
| int pixelSnappedLogicalBottom() const { return logicalBottom().ceil(); }
|
|
|
| // The logicalTop[ position is the top edge of the line box in a horizontal line and the left edge in a vertical line.
|
|
|