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

Unified Diff: third_party/WebKit/Source/core/css/CSSPropertyEquality.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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 b8d4d95968bc403b86cc88306a445a8a4acc5f3e..e24233885dfcc757db449f8f364c7223a71c1004 100644
--- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
@@ -161,6 +161,9 @@ bool CSSPropertyEquality::PropertiesEqual(CSSPropertyID prop,
return a.FontSizeAdjust() == b.FontSizeAdjust();
case CSSPropertyFontStretch:
return a.GetFontStretch() == b.GetFontStretch();
+ case CSSPropertyFontVariationSettings:
+ return DataEquivalent(a.GetFontDescription().VariationSettings(),
+ b.GetFontDescription().VariationSettings());
case CSSPropertyFontWeight:
return a.GetFontWeight() == b.GetFontWeight();
case CSSPropertyHeight:
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698