Chromium Code Reviews| 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. |