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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 kBorderStyleInset, | 99 kBorderStyleInset, |
100 kBorderStyleGroove, | 100 kBorderStyleGroove, |
101 kBorderStyleOutset, | 101 kBorderStyleOutset, |
102 kBorderStyleRidge, | 102 kBorderStyleRidge, |
103 kBorderStyleDotted, | 103 kBorderStyleDotted, |
104 kBorderStyleDashed, | 104 kBorderStyleDashed, |
105 kBorderStyleSolid, | 105 kBorderStyleSolid, |
106 kBorderStyleDouble | 106 kBorderStyleDouble |
107 }; | 107 }; |
108 | 108 |
109 enum EBorderPrecedence { | |
110 kBorderPrecedenceOff, | |
111 kBorderPrecedenceTable, | |
112 kBorderPrecedenceColumnGroup, | |
113 kBorderPrecedenceColumn, | |
114 kBorderPrecedenceRowGroup, | |
115 kBorderPrecedenceRow, | |
116 kBorderPrecedenceCell | |
117 }; | |
118 | |
119 enum OutlineIsAuto { kOutlineIsAutoOff = 0, kOutlineIsAutoOn }; | 109 enum OutlineIsAuto { kOutlineIsAutoOff = 0, kOutlineIsAutoOn }; |
120 | 110 |
121 enum EMarginCollapse { | 111 enum EMarginCollapse { |
122 kMarginCollapseCollapse, | 112 kMarginCollapseCollapse, |
123 kMarginCollapseSeparate, | 113 kMarginCollapseSeparate, |
124 kMarginCollapseDiscard | 114 kMarginCollapseDiscard |
125 }; | 115 }; |
126 | 116 |
127 // Box decoration attributes. Not inherited. | 117 // Box decoration attributes. Not inherited. |
128 | 118 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 kScrollSnapTypeNone, | 495 kScrollSnapTypeNone, |
506 kScrollSnapTypeMandatory, | 496 kScrollSnapTypeMandatory, |
507 kScrollSnapTypeProximity | 497 kScrollSnapTypeProximity |
508 }; | 498 }; |
509 | 499 |
510 enum AutoRepeatType { kNoAutoRepeat, kAutoFill, kAutoFit }; | 500 enum AutoRepeatType { kNoAutoRepeat, kAutoFill, kAutoFit }; |
511 | 501 |
512 } // namespace blink | 502 } // namespace blink |
513 | 503 |
514 #endif // ComputedStyleConstants_h | 504 #endif // ComputedStyleConstants_h |
OLD | NEW |