| Index: third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp b/third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp
|
| index 9d17f1aae1bd79f7fc01f0375300fbdacd2369b1..eb608c81a6ffecf97a071d373f9439333835d667 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerClipperTest.cpp
|
| @@ -515,8 +515,8 @@ TEST_P(PaintLayerClipperTest, Filter) {
|
| // Computed infinite clip rects may not match LayoutRect::InfiniteIntRect()
|
| // due to floating point errors.
|
| static bool IsInfinite(const LayoutRect& rect) {
|
| - return rect.X().Round() < -10000000 && rect.MaxX().Round() > 10000000
|
| - && rect.Y().Round() < -10000000 && rect.MaxY().Round() > 10000000;
|
| + return rect.X().Round() < -10000000 && rect.MaxX().Round() > 10000000 &&
|
| + rect.Y().Round() < -10000000 && rect.MaxY().Round() > 10000000;
|
| }
|
|
|
| TEST_P(PaintLayerClipperTest, IgnoreRootLayerClipWithCSSClip) {
|
|
|