| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 7 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. |
| 9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
| 10 * | 10 * |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 // CSS Mask Source Types | 208 // CSS Mask Source Types |
| 209 enum EMaskSourceType { MaskAlpha, MaskLuminance }; | 209 enum EMaskSourceType { MaskAlpha, MaskLuminance }; |
| 210 | 210 |
| 211 // Deprecated Flexible Box Properties | 211 // Deprecated Flexible Box Properties |
| 212 | 212 |
| 213 enum EBoxPack { BoxPackStart, BoxPackCenter, BoxPackEnd, BoxPackJustify }; | 213 enum EBoxPack { BoxPackStart, BoxPackCenter, BoxPackEnd, BoxPackJustify }; |
| 214 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; | 214 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; |
| 215 enum EBoxOrient { HORIZONTAL, VERTICAL }; | 215 enum EBoxOrient { HORIZONTAL, VERTICAL }; |
| 216 enum EBoxLines { SINGLE, MULTIPLE }; | 216 enum EBoxLines { SINGLE, MULTIPLE }; |
| 217 enum class EBoxDirection : unsigned { Normal, Reverse }; | |
| 218 | 217 |
| 219 // CSS3 Flexbox Properties | 218 // CSS3 Flexbox Properties |
| 220 | 219 |
| 221 enum EFlexDirection { FlowRow, FlowRowReverse, FlowColumn, FlowColumnReverse }; | 220 enum EFlexDirection { FlowRow, FlowRowReverse, FlowColumn, FlowColumnReverse }; |
| 222 enum EFlexWrap { FlexNoWrap, FlexWrap, FlexWrapReverse }; | 221 enum EFlexWrap { FlexNoWrap, FlexWrap, FlexWrapReverse }; |
| 223 | 222 |
| 224 enum ETextSecurity { TSNONE, TSDISC, TSCIRCLE, TSSQUARE }; | 223 enum ETextSecurity { TSNONE, TSDISC, TSCIRCLE, TSSQUARE }; |
| 225 | 224 |
| 226 // CSS3 User Modify Properties | 225 // CSS3 User Modify Properties |
| 227 | 226 |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 ScrollSnapTypeNone, | 697 ScrollSnapTypeNone, |
| 699 ScrollSnapTypeMandatory, | 698 ScrollSnapTypeMandatory, |
| 700 ScrollSnapTypeProximity | 699 ScrollSnapTypeProximity |
| 701 }; | 700 }; |
| 702 | 701 |
| 703 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; | 702 enum AutoRepeatType { NoAutoRepeat, AutoFill, AutoFit }; |
| 704 | 703 |
| 705 } // namespace blink | 704 } // namespace blink |
| 706 | 705 |
| 707 #endif // ComputedStyleConstants_h | 706 #endif // ComputedStyleConstants_h |
| OLD | NEW |