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

Unified Diff: Source/core/style/ComputedStyle.cpp

Issue 1196913005: Implement animations for Independent CSS Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/style/ComputedStyle.cpp
diff --git a/Source/core/style/ComputedStyle.cpp b/Source/core/style/ComputedStyle.cpp
index 594eea063e035cd2c3b09557c5e04716b0271589..34394653da788232581d4fa375605a0c60de2e67 100644
--- a/Source/core/style/ComputedStyle.cpp
+++ b/Source/core/style/ComputedStyle.cpp
@@ -922,6 +922,7 @@ void ComputedStyle::applyTransform(TransformationMatrix& result, const FloatRect
{
if (!hasMotionPath())
applyMotionPath = ExcludeMotionPath;
+
Eric Willigers 2015/06/23 06:50:48 No need to touch this file.
soonm 2015/06/24 00:26:45 Done - Reverted
bool applyTransformOrigin = requireTransformOrigin(applyOrigin, applyMotionPath);
float offsetX = transformOriginX().type() == Percent ? boundingBox.x() : 0;

Powered by Google App Engine
This is Rietveld 408576698