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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableFontVariationSettings.cpp

Issue 2891743003: Enable interpolation of CSS property font-variation-settings (Closed)
Patch Set: updatetest Created 3 years, 7 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/animatable/AnimatableFontVariationSettings.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableFontVariationSettings.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableFontVariationSettings.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..1abe67525186ba6d68fad5f2602e4e3cfebba2ef
--- /dev/null
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableFontVariationSettings.cpp
@@ -0,0 +1,15 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "core/animation/animatable/AnimatableFontVariationSettings.h"
+
+namespace blink {
+
+bool AnimatableFontVariationSettings::EqualTo(
+ const AnimatableValue* value) const {
+ return DataEquivalent(settings_,
+ ToAnimatableFontVariationSettings(value)->settings_);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698