| 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
reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 enum EFillSizeType { Contain, Cover, SizeLength, SizeNone }; | 182 enum EFillSizeType { Contain, Cover, SizeLength, SizeNone }; |
| 183 | 183 |
| 184 // CSS3 Background Position | 184 // CSS3 Background Position |
| 185 enum BackgroundEdgeOrigin { TopEdge, RightEdge, BottomEdge, LeftEdge }; | 185 enum BackgroundEdgeOrigin { TopEdge, RightEdge, BottomEdge, LeftEdge }; |
| 186 | 186 |
| 187 // CSS Mask Source Types | 187 // CSS Mask Source Types |
| 188 enum EMaskSourceType { MaskAlpha, MaskLuminance }; | 188 enum EMaskSourceType { MaskAlpha, MaskLuminance }; |
| 189 | 189 |
| 190 // Deprecated Flexible Box Properties | 190 // Deprecated Flexible Box Properties |
| 191 | 191 |
| 192 enum EBoxPack { Start, Center, End, Justify }; | 192 enum EBoxPack { BoxPackStart, BoxPackCenter, BoxPackEnd, BoxPackJustify }; |
| 193 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; | 193 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; |
| 194 enum EBoxOrient { HORIZONTAL, VERTICAL }; | 194 enum EBoxOrient { HORIZONTAL, VERTICAL }; |
| 195 enum EBoxLines { SINGLE, MULTIPLE }; | 195 enum EBoxLines { SINGLE, MULTIPLE }; |
| 196 enum EBoxDirection { BNORMAL, BREVERSE }; | 196 enum EBoxDirection { BNORMAL, BREVERSE }; |
| 197 | 197 |
| 198 // CSS3 Flexbox Properties | 198 // CSS3 Flexbox Properties |
| 199 | 199 |
| 200 enum EFlexDirection { FlowRow, FlowRowReverse, FlowColumn, FlowColumnReverse }; | 200 enum EFlexDirection { FlowRow, FlowRowReverse, FlowColumn, FlowColumnReverse }; |
| 201 enum EFlexWrap { FlexNoWrap, FlexWrap, FlexWrapReverse }; | 201 enum EFlexWrap { FlexNoWrap, FlexWrap, FlexWrapReverse }; |
| 202 | 202 |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 | 609 |
| 610 enum AutoRepeatType { | 610 enum AutoRepeatType { |
| 611 NoAutoRepeat, | 611 NoAutoRepeat, |
| 612 AutoFill, | 612 AutoFill, |
| 613 AutoFit | 613 AutoFit |
| 614 }; | 614 }; |
| 615 | 615 |
| 616 } // namespace blink | 616 } // namespace blink |
| 617 | 617 |
| 618 #endif // ComputedStyleConstants_h | 618 #endif // ComputedStyleConstants_h |
| OLD | NEW |