| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 // These have been defined in the order of their precedence for border-collapsin
g. Do | 42 // These have been defined in the order of their precedence for border-collapsin
g. Do |
| 43 // not change this order! This order also must match the order in CSSValueKeywor
ds.in. | 43 // not change this order! This order also must match the order in CSSValueKeywor
ds.in. |
| 44 enum EBorderStyle { BNONE, BHIDDEN, INSET, GROOVE, OUTSET, RIDGE, DOTTED, DASHED
, SOLID, DOUBLE }; | 44 enum EBorderStyle { BNONE, BHIDDEN, INSET, GROOVE, OUTSET, RIDGE, DOTTED, DASHED
, SOLID, DOUBLE }; |
| 45 | 45 |
| 46 enum EBorderPrecedence { BOFF, BTABLE, BCOLGROUP, BCOL, BROWGROUP, BROW, BCELL }
; | 46 enum EBorderPrecedence { BOFF, BTABLE, BCOLGROUP, BCOL, BROWGROUP, BROW, BCELL }
; |
| 47 | 47 |
| 48 enum OutlineIsAuto { AUTO_OFF = 0, AUTO_ON }; | 48 enum OutlineIsAuto { AUTO_OFF = 0, AUTO_ON }; |
| 49 | 49 |
| 50 enum EPosition { | 50 enum EPosition { |
| 51 StaticPosition = 0, | 51 StaticPosition = 0, |
| 52 RelativePosition = 1, | 52 AbsolutePosition = 1, |
| 53 AbsolutePosition = 2, | |
| 54 }; | 53 }; |
| 55 | 54 |
| 56 // Box decoration attributes. Not inherited. | 55 // Box decoration attributes. Not inherited. |
| 57 | 56 |
| 58 enum EBoxDecorationBreak { DSLICE, DCLONE }; | 57 enum EBoxDecorationBreak { DSLICE, DCLONE }; |
| 59 | 58 |
| 60 // Box attributes. Not inherited. | 59 // Box attributes. Not inherited. |
| 61 | 60 |
| 62 enum EBoxSizing { CONTENT_BOX, BORDER_BOX }; | 61 enum EBoxSizing { CONTENT_BOX, BORDER_BOX }; |
| 63 | 62 |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 static const float maximumAllowedFontSize = 1000000.0f; | 432 static const float maximumAllowedFontSize = 1000000.0f; |
| 434 | 433 |
| 435 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 434 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 436 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 435 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 437 | 436 |
| 438 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 437 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 439 | 438 |
| 440 } // namespace blink | 439 } // namespace blink |
| 441 | 440 |
| 442 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ | 441 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ |
| OLD | NEW |