| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 // CSS3 Background Values | 146 // CSS3 Background Values |
| 147 enum EFillSizeType { Contain, Cover, SizeLength, SizeNone }; | 147 enum EFillSizeType { Contain, Cover, SizeLength, SizeNone }; |
| 148 | 148 |
| 149 // CSS3 Background Position | 149 // CSS3 Background Position |
| 150 enum BackgroundEdgeOrigin { TopEdge, RightEdge, BottomEdge, LeftEdge }; | 150 enum BackgroundEdgeOrigin { TopEdge, RightEdge, BottomEdge, LeftEdge }; |
| 151 | 151 |
| 152 // CSS Mask Source Types | 152 // CSS Mask Source Types |
| 153 enum EMaskSourceType { MaskAlpha, MaskLuminance }; | 153 enum EMaskSourceType { MaskAlpha, MaskLuminance }; |
| 154 | 154 |
| 155 // CSS3 Marquee Properties | |
| 156 | |
| 157 enum EMarqueeBehavior { MNONE, MSCROLL, MSLIDE, MALTERNATE }; | |
| 158 enum EMarqueeDirection { MAUTO = 0, MLEFT = 1, MRIGHT = -1, MUP = 2, MDOWN = -2,
MFORWARD = 3, MBACKWARD = -3 }; | |
| 159 | |
| 160 // Deprecated Flexible Box Properties | 155 // Deprecated Flexible Box Properties |
| 161 | 156 |
| 162 enum EBoxPack { Start, Center, End, Justify }; | 157 enum EBoxPack { Start, Center, End, Justify }; |
| 163 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; | 158 enum EBoxAlignment { BSTRETCH, BSTART, BCENTER, BEND, BBASELINE }; |
| 164 enum EBoxOrient { HORIZONTAL, VERTICAL }; | 159 enum EBoxOrient { HORIZONTAL, VERTICAL }; |
| 165 enum EBoxLines { SINGLE, MULTIPLE }; | 160 enum EBoxLines { SINGLE, MULTIPLE }; |
| 166 enum EBoxDirection { BNORMAL, BREVERSE }; | 161 enum EBoxDirection { BNORMAL, BREVERSE }; |
| 167 | 162 |
| 168 // CSS3 Flexbox Properties | 163 // CSS3 Flexbox Properties |
| 169 | 164 |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 static const float maximumAllowedFontSize = 1000000.0f; | 541 static const float maximumAllowedFontSize = 1000000.0f; |
| 547 | 542 |
| 548 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 543 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 549 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 544 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 550 | 545 |
| 551 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 546 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 552 | 547 |
| 553 } // namespace blink | 548 } // namespace blink |
| 554 | 549 |
| 555 #endif // RenderStyleConstants_h | 550 #endif // RenderStyleConstants_h |
| OLD | NEW |