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 010e0845980ec7edf00c000cadd9e7b23236063f..66cef18ca0a3375ea44228e5b7ca5ccb140d803b 100644 |
| --- a/Source/core/rendering/style/RenderStyleConstants.h |
| +++ b/Source/core/rendering/style/RenderStyleConstants.h |
| @@ -363,6 +363,7 @@ inline TextDecoration operator| (TextDecoration a, TextDecoration b) { return Te |
| inline TextDecoration& operator|= (TextDecoration& a, TextDecoration b) { return a = a | b; } |
| enum TextDecorationStyle { |
| + TextDecorationStyleNone, |
|
andersr
2014/03/19 13:18:12
Are you sure you need this?
The decoration style
h.joshi
2014/03/19 13:59:54
Yes as per CSS doc "none" is not a defined value,
andersr
2014/03/19 14:39:44
The correct value in that case is TextDecorationSt
|
| TextDecorationStyleSolid, |
| TextDecorationStyleDouble, |
| TextDecorationStyleDotted, |