| Index: Source/core/animation/css/CSSPropertyEquality.cpp
|
| diff --git a/Source/core/animation/css/CSSPropertyEquality.cpp b/Source/core/animation/css/CSSPropertyEquality.cpp
|
| index e0a2ce38c7d315845c0a8cc3be6cb1fcfce6b821..0523d28ae8175928bc757a91b07a9e4da6023178 100644
|
| --- a/Source/core/animation/css/CSSPropertyEquality.cpp
|
| +++ b/Source/core/animation/css/CSSPropertyEquality.cpp
|
| @@ -304,6 +304,10 @@ bool CSSPropertyEquality::propertiesEqual(CSSPropertyID prop, const LayoutStyle&
|
| return a.svgStyle().x() == b.svgStyle().x();
|
| case CSSPropertyY:
|
| return a.svgStyle().y() == b.svgStyle().y();
|
| + case CSSPropertyRx:
|
| + return a.svgStyle().rx() == b.svgStyle().rx();
|
| + case CSSPropertyRy:
|
| + return a.svgStyle().ry() == b.svgStyle().ry();
|
| case CSSPropertyZIndex:
|
| return a.zIndex() == b.zIndex();
|
| default:
|
|
|