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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 enum EPosition { | 118 enum EPosition { |
119 StaticPosition = 0, | 119 StaticPosition = 0, |
120 RelativePosition = 1, | 120 RelativePosition = 1, |
121 AbsolutePosition = 2, | 121 AbsolutePosition = 2, |
122 StickyPosition = 3, | 122 StickyPosition = 3, |
123 // This value is required to pack our bits efficiently in LayoutObject. | 123 // This value is required to pack our bits efficiently in LayoutObject. |
124 FixedPosition = 6 | 124 FixedPosition = 6 |
125 }; | 125 }; |
126 | 126 |
127 enum class EFloat : unsigned { | 127 enum class EFloat : unsigned { |
128 NoFloat, LeftFloat, RightFloat | 128 None, Left, Right |
129 }; | 129 }; |
130 | 130 |
131 enum EMarginCollapse { MarginCollapseCollapse, MarginCollapseSeparate, MarginCol
lapseDiscard }; | 131 enum EMarginCollapse { MarginCollapseCollapse, MarginCollapseSeparate, MarginCol
lapseDiscard }; |
132 | 132 |
133 // Box decoration attributes. Not inherited. | 133 // Box decoration attributes. Not inherited. |
134 | 134 |
135 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone }; | 135 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone }; |
136 | 136 |
137 // Box attributes. Not inherited. | 137 // Box attributes. Not inherited. |
138 | 138 |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 | 622 |
623 enum AutoRepeatType { | 623 enum AutoRepeatType { |
624 NoAutoRepeat, | 624 NoAutoRepeat, |
625 AutoFill, | 625 AutoFill, |
626 AutoFit | 626 AutoFit |
627 }; | 627 }; |
628 | 628 |
629 } // namespace blink | 629 } // namespace blink |
630 | 630 |
631 #endif // ComputedStyleConstants_h | 631 #endif // ComputedStyleConstants_h |
OLD | NEW |