| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 Color m_textStrokeColor; | 75 Color m_textStrokeColor; |
| 76 float textStrokeWidth; | 76 float textStrokeWidth; |
| 77 Color m_textFillColor; | 77 Color m_textFillColor; |
| 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 float m_effectiveZoom; | |
| 86 | 85 |
| 87 // Paged media properties. | 86 // Paged media properties. |
| 88 short widows; | 87 short widows; |
| 89 short orphans; | 88 short orphans; |
| 90 unsigned m_hasAutoWidows : 1; | 89 unsigned m_hasAutoWidows : 1; |
| 91 unsigned m_hasAutoOrphans : 1; | 90 unsigned m_hasAutoOrphans : 1; |
| 92 | 91 |
| 93 unsigned m_textStrokeColorIsCurrentColor : 1; | 92 unsigned m_textStrokeColorIsCurrentColor : 1; |
| 94 unsigned m_textFillColorIsCurrentColor : 1; | 93 unsigned m_textFillColorIsCurrentColor : 1; |
| 95 unsigned m_textEmphasisColorIsCurrentColor : 1; | 94 unsigned m_textEmphasisColorIsCurrentColor : 1; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 135 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 137 | 136 |
| 138 private: | 137 private: |
| 139 StyleRareInheritedData(); | 138 StyleRareInheritedData(); |
| 140 StyleRareInheritedData(const StyleRareInheritedData&); | 139 StyleRareInheritedData(const StyleRareInheritedData&); |
| 141 }; | 140 }; |
| 142 | 141 |
| 143 } // namespace blink | 142 } // namespace blink |
| 144 | 143 |
| 145 #endif // StyleRareInheritedData_h | 144 #endif // StyleRareInheritedData_h |
| OLD | NEW |