| 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 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 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 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 Color m_textEmphasisColor; | 78 Color m_textEmphasisColor; |
| 79 | 79 |
| 80 RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed t
ext drawing. | 80 RefPtr<ShadowList> textShadow; // Our text shadow information for shadowed t
ext drawing. |
| 81 AtomicString highlight; // Apple-specific extension for custom highlight ren
dering. | 81 AtomicString highlight; // Apple-specific extension for custom highlight ren
dering. |
| 82 | 82 |
| 83 RefPtr<CursorList> cursorData; | 83 RefPtr<CursorList> cursorData; |
| 84 Length indent; | 84 Length indent; |
| 85 | 85 |
| 86 // Paged media properties. | 86 // Paged media properties. |
| 87 short widows; | 87 short widows; |
| 88 short orphans; | |
| 89 unsigned m_hasAutoWidows : 1; | 88 unsigned m_hasAutoWidows : 1; |
| 90 unsigned m_hasAutoOrphans : 1; | |
| 91 | 89 |
| 92 unsigned m_textStrokeColorIsCurrentColor : 1; | 90 unsigned m_textStrokeColorIsCurrentColor : 1; |
| 93 unsigned m_textFillColorIsCurrentColor : 1; | 91 unsigned m_textFillColorIsCurrentColor : 1; |
| 94 unsigned m_textEmphasisColorIsCurrentColor : 1; | 92 unsigned m_textEmphasisColorIsCurrentColor : 1; |
| 95 | 93 |
| 96 unsigned userModify : 2; // EUserModify (editing) | 94 unsigned userModify : 2; // EUserModify (editing) |
| 97 unsigned wordBreak : 2; // EWordBreak | 95 unsigned wordBreak : 2; // EWordBreak |
| 98 unsigned overflowWrap : 1; // EOverflowWrap | 96 unsigned overflowWrap : 1; // EOverflowWrap |
| 99 unsigned lineBreak : 3; // LineBreak | 97 unsigned lineBreak : 3; // LineBreak |
| 100 unsigned userSelect : 2; // EUserSelect | 98 unsigned userSelect : 2; // EUserSelect |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 133 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 136 | 134 |
| 137 private: | 135 private: |
| 138 StyleRareInheritedData(); | 136 StyleRareInheritedData(); |
| 139 StyleRareInheritedData(const StyleRareInheritedData&); | 137 StyleRareInheritedData(const StyleRareInheritedData&); |
| 140 }; | 138 }; |
| 141 | 139 |
| 142 } // namespace blink | 140 } // namespace blink |
| 143 | 141 |
| 144 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERAREINHERITEDDATA_H_ | 142 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERAREINHERITEDDATA_H_ |
| OLD | NEW |