Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: Source/core/animation/css/CSSPropertyEquality.cpp

Issue 955033002: [svg2] Make 'rx' and 'ry' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review fixes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:
« no previous file with comments | « Source/core/animation/css/CSSAnimatableValueFactory.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698