| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 enum EBoxDecorationBreak { DSLICE, DCLONE }; | 58 enum EBoxDecorationBreak { DSLICE, DCLONE }; |
| 59 | 59 |
| 60 // Box attributes. Not inherited. | 60 // Box attributes. Not inherited. |
| 61 | 61 |
| 62 enum EBoxSizing { CONTENT_BOX, BORDER_BOX }; | 62 enum EBoxSizing { CONTENT_BOX, BORDER_BOX }; |
| 63 | 63 |
| 64 // Random visual rendering model attributes. Not inherited. | 64 // Random visual rendering model attributes. Not inherited. |
| 65 | 65 |
| 66 enum EOverflow { | 66 enum EOverflow { |
| 67 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY | 67 OVISIBLE, OHIDDEN, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 enum EVerticalAlign { | 70 enum EVerticalAlign { |
| 71 BASELINE, MIDDLE, SUB, SUPER, TEXT_TOP, | 71 BASELINE, MIDDLE, SUB, SUPER, TEXT_TOP, |
| 72 TEXT_BOTTOM, TOP, BOTTOM, BASELINE_MIDDLE, LENGTH | 72 TEXT_BOTTOM, TOP, BOTTOM, BASELINE_MIDDLE, LENGTH |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 enum ETableLayout { | 75 enum ETableLayout { |
| 76 TAUTO, TFIXED | 76 TAUTO, TFIXED |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 enum EFillAttachment { | 79 enum EFillAttachment { |
| 80 ScrollBackgroundAttachment, LocalBackgroundAttachment, FixedBackgroundAttach
ment | 80 LocalBackgroundAttachment, FixedBackgroundAttachment |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 enum EFillBox { | 83 enum EFillBox { |
| 84 BorderFillBox, PaddingFillBox, ContentFillBox | 84 BorderFillBox, PaddingFillBox, ContentFillBox |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 enum EFillRepeat { | 87 enum EFillRepeat { |
| 88 RepeatFill, NoRepeatFill, RoundFill, SpaceFill | 88 RepeatFill, NoRepeatFill, RoundFill, SpaceFill |
| 89 }; | 89 }; |
| 90 | 90 |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 static const float maximumAllowedFontSize = 1000000.0f; | 435 static const float maximumAllowedFontSize = 1000000.0f; |
| 436 | 436 |
| 437 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 437 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 438 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 438 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 439 | 439 |
| 440 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 440 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 441 | 441 |
| 442 } // namespace blink | 442 } // namespace blink |
| 443 | 443 |
| 444 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ | 444 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ |
| OLD | NEW |