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

Unified Diff: third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp

Issue 2842933003: CSS Motion Path: delete implementation of offset-rotation property (Closed)
Patch Set: remove offsetRotation from webexposed Created 3 years, 8 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: third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
index 29671f409e3a7d092117221cee99b612c47c4a44..b8d4d95968bc403b86cc88306a445a8a4acc5f3e 100644
--- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
@@ -200,8 +200,7 @@ bool CSSPropertyEquality::PropertiesEqual(CSSPropertyID prop,
case CSSPropertyOffsetPosition:
return a.OffsetPosition() == b.OffsetPosition();
case CSSPropertyOffsetRotate:
- case CSSPropertyOffsetRotation:
- return a.OffsetRotation() == b.OffsetRotation();
+ return a.OffsetRotate() == b.OffsetRotate();
case CSSPropertyOpacity:
return a.Opacity() == b.Opacity();
case CSSPropertyOrder:

Powered by Google App Engine
This is Rietveld 408576698