Chromium Code Reviews| Index: Source/core/rendering/style/BasicShapes.cpp |
| diff --git a/Source/core/rendering/style/BasicShapes.cpp b/Source/core/rendering/style/BasicShapes.cpp |
| index 092f06e09f94760de2eb8fc853939c7eb453b6d4..ecff010c7263533d657eb695356ba86ac5b7e929 100644 |
| --- a/Source/core/rendering/style/BasicShapes.cpp |
| +++ b/Source/core/rendering/style/BasicShapes.cpp |
| @@ -213,7 +213,7 @@ bool DeprecatedBasicShapeEllipse::operator==(const BasicShape& o) const |
| if (!isSameType(o)) |
| return false; |
| const DeprecatedBasicShapeEllipse& other = toDeprecatedBasicShapeEllipse(o); |
| - return m_centerX == other.m_centerX && m_centerY == other.m_centerY && m_radiusX == other.m_radiusX && m_radiusY == m_radiusY; |
| + return m_centerX == other.m_centerX && m_centerY == other.m_centerY && m_radiusX == other.m_radiusX && m_radiusY == other.m_radiusY; |
|
Inactive
2014/01/17 00:54:53
Nice bug
abarth-chromium
2014/01/17 06:59:08
Can you write a test for this change?
|
| } |
| PassRefPtr<BasicShape> DeprecatedBasicShapeEllipse::blend(const BasicShape* other, double progress) const |