| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone }; | 114 enum EBoxDecorationBreak { BoxDecorationBreakSlice, BoxDecorationBreakClone }; |
| 115 | 115 |
| 116 // Box attributes. Not inherited. | 116 // Box attributes. Not inherited. |
| 117 | 117 |
| 118 enum EBoxSizing { BoxSizingContentBox, BoxSizingBorderBox }; | 118 enum EBoxSizing { BoxSizingContentBox, BoxSizingBorderBox }; |
| 119 | 119 |
| 120 // Random visual rendering model attributes. Not inherited. | 120 // Random visual rendering model attributes. Not inherited. |
| 121 | 121 |
| 122 enum EOverflow { | 122 enum EOverflow { |
| 123 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY | 123 OverflowVisible, OverflowHidden, OverflowScroll, OverflowAuto, OverflowOverl
ay, OverflowPagedX, OverflowPagedY |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 enum EVerticalAlign { | 126 enum EVerticalAlign { |
| 127 BASELINE, MIDDLE, SUB, SUPER, TEXT_TOP, | 127 VerticalAlignBaseline, |
| 128 TEXT_BOTTOM, TOP, BOTTOM, BASELINE_MIDDLE, LENGTH | 128 VerticalAlignMiddle, |
| 129 VerticalAlignSub, |
| 130 VerticalAlignSuper, |
| 131 VerticalAlignTextTop, |
| 132 VerticalAlignTextBottom, |
| 133 VerticalAlignTop, |
| 134 VerticalAlignBottom, |
| 135 VerticalAlignBaselineMiddle, |
| 136 VerticalAlignLength |
| 129 }; | 137 }; |
| 130 | 138 |
| 131 enum EClear { | 139 enum EClear { |
| 132 CNONE = 0, CLEFT = 1, CRIGHT = 2, CBOTH = 3 | 140 CNONE = 0, CLEFT = 1, CRIGHT = 2, CBOTH = 3 |
| 133 }; | 141 }; |
| 134 | 142 |
| 135 enum ETableLayout { | 143 enum ETableLayout { |
| 136 TAUTO, TFIXED | 144 TAUTO, TFIXED |
| 137 }; | 145 }; |
| 138 | 146 |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 | 587 |
| 580 enum ScrollSnapType { | 588 enum ScrollSnapType { |
| 581 ScrollSnapTypeNone, | 589 ScrollSnapTypeNone, |
| 582 ScrollSnapTypeMandatory, | 590 ScrollSnapTypeMandatory, |
| 583 ScrollSnapTypeProximity | 591 ScrollSnapTypeProximity |
| 584 }; | 592 }; |
| 585 | 593 |
| 586 } // namespace blink | 594 } // namespace blink |
| 587 | 595 |
| 588 #endif // ComputedStyleConstants_h | 596 #endif // ComputedStyleConstants_h |
| OLD | NEW |