| Index: Source/core/animation/css/CSSPropertyEquality.cpp
|
| diff --git a/Source/core/animation/css/CSSPropertyEquality.cpp b/Source/core/animation/css/CSSPropertyEquality.cpp
|
| index 1051332511e33d299d5e83f266b94a877d2335eb..b8afb1cc41212a0bc17be246d038ebb9ae4de89d 100644
|
| --- a/Source/core/animation/css/CSSPropertyEquality.cpp
|
| +++ b/Source/core/animation/css/CSSPropertyEquality.cpp
|
| @@ -221,7 +221,7 @@ bool CSSPropertyEquality::propertiesEqual(CSSPropertyID prop, const LayoutStyle&
|
| && (aSVG.visitedLinkStrokePaintType() != SVG_PAINTTYPE_RGBCOLOR || aSVG.visitedLinkStrokePaintColor() == bSVG.visitedLinkStrokePaintColor());
|
| }
|
| case CSSPropertyStrokeDasharray:
|
| - return dataEquivalent(a.strokeDashArray(), b.strokeDashArray());
|
| + return a.strokeDashArray() == b.strokeDashArray();
|
| case CSSPropertyStrokeDashoffset:
|
| return a.strokeDashOffset() == b.strokeDashOffset();
|
| case CSSPropertyStrokeMiterlimit:
|
|
|