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

Unified Diff: third_party/WebKit/Source/core/css/FontSize.h

Issue 2575863002: Ignore minimum font-size for SVG text (Closed)
Patch Set: Created 4 years 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/css/FontSize.h
diff --git a/third_party/WebKit/Source/core/css/FontSize.h b/third_party/WebKit/Source/core/css/FontSize.h
index d8c9d5bc20adaed0af47c080785d84c7c7ecf6aa..a5a356bb2b70888acfe83bced119477f5762fc2c 100644
--- a/third_party/WebKit/Source/core/css/FontSize.h
+++ b/third_party/WebKit/Source/core/css/FontSize.h
@@ -30,9 +30,9 @@ namespace blink {
class Document;
-enum ESmartMinimumForFontSize {
- DoNotUseSmartMinimumForFontSize,
- UseSmartMinimumForFontSize
+enum ApplyMinimumFontSize {
+ DoNotApplyMinimumForFontSize,
+ ApplyMinimumForFontSize
};
class FontSize {
@@ -44,7 +44,7 @@ class FontSize {
float zoomFactor,
bool isAbsoluteSize,
float specifiedSize,
- ESmartMinimumForFontSize = UseSmartMinimumForFontSize);
+ ApplyMinimumFontSize = ApplyMinimumForFontSize);
// Given a CSS keyword in the range (xx-small to -webkit-xxx-large), this
// function returns

Powered by Google App Engine
This is Rietveld 408576698