| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 88 |
| 89 enum ETableLayout { | 89 enum ETableLayout { |
| 90 TAUTO, TFIXED | 90 TAUTO, TFIXED |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 enum EFillAttachment { | 93 enum EFillAttachment { |
| 94 ScrollBackgroundAttachment, LocalBackgroundAttachment, FixedBackgroundAttach
ment | 94 ScrollBackgroundAttachment, LocalBackgroundAttachment, FixedBackgroundAttach
ment |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 enum EFillBox { | 97 enum EFillBox { |
| 98 BorderFillBox, PaddingFillBox, ContentFillBox, TextFillBox | 98 BorderFillBox, PaddingFillBox, ContentFillBox |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 enum EFillRepeat { | 101 enum EFillRepeat { |
| 102 RepeatFill, NoRepeatFill, RoundFill, SpaceFill | 102 RepeatFill, NoRepeatFill, RoundFill, SpaceFill |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 enum EFillLayerType { | 105 enum EFillLayerType { |
| 106 BackgroundFillLayer, MaskFillLayer | 106 BackgroundFillLayer, MaskFillLayer |
| 107 }; | 107 }; |
| 108 | 108 |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 static const float maximumAllowedFontSize = 1000000.0f; | 449 static const float maximumAllowedFontSize = 1000000.0f; |
| 450 | 450 |
| 451 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 451 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 452 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 452 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 453 | 453 |
| 454 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 454 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 455 | 455 |
| 456 } // namespace blink | 456 } // namespace blink |
| 457 | 457 |
| 458 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ | 458 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ |
| OLD | NEW |