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

Unified Diff: Source/core/rendering/style/RenderStyleConstants.h

Issue 17155007: [CSS3] Parsing the property, text-justify. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parsingTextJustify
Patch Set: Created 7 years, 5 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: Source/core/rendering/style/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index 52f8182032fe95f11d6a7681e754e272f41d9bdb..0d5182494d739addd78206927c18c79cebd816d1 100644
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -357,6 +357,11 @@ enum TextAlignLast {
TextAlignLastAuto, TextAlignLastStart, TextAlignLastEnd, TextAlignLastLeft, TextAlignLastRight, TextAlignLastCenter, TextAlignLastJustify
};
+enum TextJustify {
+ // FIXME: Implement support for 'auto', 'none', 'inter-word', and 'distribute'
Julien - ping for review 2013/07/17 01:51:10 This FIXME is a bit too remote from the code you w
dw.im 2013/07/17 02:03:15 Yes.. I will try to implement those value in near
+ TextJustifyAuto, TextJustifyNone, TextJustifyInterWord, TextJustifyDistribute
+};
+
#if ENABLE(CSS3_TEXT)
enum TextUnderlinePosition {
// FIXME: Implement support for 'under left' and 'under right' values.

Powered by Google App Engine
This is Rietveld 408576698