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

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp

Issue 2662203002: CSS: Rotate support for none and fixed responsive-test.js (Closed)
Patch Set: avoid expectation failure on Mac Created 3 years, 11 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/animation/css/CSSAnimatableValueFactory.cpp
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
index 3c853cc83d3507c4f8134cbe61084318e8a9d147..366c9da4083a156ea1cbc33a990119c2554f88a8 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
@@ -618,11 +618,8 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(
style.translate(), style.effectiveZoom(), initialTranslate);
}
case CSSPropertyRotate: {
- DEFINE_STATIC_REF(RotateTransformOperation, initialRotate,
- RotateTransformOperation::create(
- 0, 0, 1, 0, TransformOperation::Rotate3D));
- return createFromTransformProperties(
- style.rotate(), style.effectiveZoom(), initialRotate);
+ return createFromTransformProperties(style.rotate(),
+ style.effectiveZoom(), nullptr);
}
case CSSPropertyScale: {
return createFromTransformProperties(style.scale(), style.effectiveZoom(),

Powered by Google App Engine
This is Rietveld 408576698