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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h

Issue 2100013002: Implement the new text-size-adjust CSS property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup convertTextSizeAdjust and add a test that better covers it Created 4 years, 6 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/css/resolver/StyleBuilderConverter.h
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
index cbcc53e82685324812fe4ec5323ceca7ec87d46b..a9492e30f3064215f0692d05491b2e307af992f0 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.h
@@ -46,6 +46,7 @@
namespace blink {
class RotateTransformOperation;
+class TextSizeAdjust;
class TranslateTransformOperation;
class ScaleTransformOperation;
class StylePath;
@@ -97,6 +98,7 @@ public:
static PassRefPtr<SVGDashArray> convertStrokeDasharray(StyleResolverState&, const CSSValue&);
static StyleColor convertStyleColor(StyleResolverState&, const CSSValue&, bool forVisitedLink = false);
static float convertTextStrokeWidth(StyleResolverState&, const CSSValue&);
+ static TextSizeAdjust convertTextSizeAdjust(StyleResolverState&, const CSSValue&);
static TransformOrigin convertTransformOrigin(StyleResolverState&, const CSSValue&);
static void convertGridTrackList(const CSSValue&, Vector<GridTrackSize>&, NamedGridLinesMap&, OrderedNamedGridLines&,

Powered by Google App Engine
This is Rietveld 408576698