| 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 c8df820995a85c9b1c2b697cd7be335200f219d0..072663c55612d26eba57922e2d1d51a7ffc338ce 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSPropertyEquality.cpp
|
| @@ -146,10 +146,12 @@ bool CSSPropertyEquality::propertiesEqual(CSSPropertyID prop,
|
| case CSSPropertyFloodOpacity:
|
| return a.floodOpacity() == b.floodOpacity();
|
| case CSSPropertyFontSize:
|
| - // CSSPropertyFontSize: Must pass a specified size to setFontSize if Text Autosizing is enabled, but a computed size
|
| - // if text zoom is enabled (if neither is enabled it's irrelevant as they're probably the same).
|
| - // FIXME: Should we introduce an option to pass the computed font size here, allowing consumers to
|
| - // enable text zoom rather than Text Autosizing? See http://crbug.com/227545.
|
| + // CSSPropertyFontSize: Must pass a specified size to setFontSize if Text
|
| + // Autosizing is enabled, but a computed size if text zoom is enabled (if
|
| + // neither is enabled it's irrelevant as they're probably the same).
|
| + // FIXME: Should we introduce an option to pass the computed font size
|
| + // here, allowing consumers to enable text zoom rather than Text
|
| + // Autosizing? See http://crbug.com/227545.
|
| return a.specifiedFontSize() == b.specifiedFontSize();
|
| case CSSPropertyFontSizeAdjust:
|
| return a.fontSizeAdjust() == b.fontSizeAdjust();
|
|
|