| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 unsigned m_hasAutoOrphans : 1; | 91 unsigned m_hasAutoOrphans : 1; |
| 92 | 92 |
| 93 unsigned m_textStrokeColorIsCurrentColor : 1; | 93 unsigned m_textStrokeColorIsCurrentColor : 1; |
| 94 unsigned m_textFillColorIsCurrentColor : 1; | 94 unsigned m_textFillColorIsCurrentColor : 1; |
| 95 unsigned m_textEmphasisColorIsCurrentColor : 1; | 95 unsigned m_textEmphasisColorIsCurrentColor : 1; |
| 96 | 96 |
| 97 unsigned userModify : 2; // EUserModify (editing) | 97 unsigned userModify : 2; // EUserModify (editing) |
| 98 unsigned wordBreak : 2; // EWordBreak | 98 unsigned wordBreak : 2; // EWordBreak |
| 99 unsigned overflowWrap : 1; // EOverflowWrap | 99 unsigned overflowWrap : 1; // EOverflowWrap |
| 100 unsigned lineBreak : 3; // LineBreak | 100 unsigned lineBreak : 3; // LineBreak |
| 101 unsigned resize : 2; // EResize | |
| 102 unsigned userSelect : 2; // EUserSelect | 101 unsigned userSelect : 2; // EUserSelect |
| 103 unsigned speak : 3; // ESpeak | 102 unsigned speak : 3; // ESpeak |
| 104 unsigned hyphens : 2; // Hyphens | 103 unsigned hyphens : 2; // Hyphens |
| 105 unsigned textEmphasisFill : 1; // TextEmphasisFill | 104 unsigned textEmphasisFill : 1; // TextEmphasisFill |
| 106 unsigned textEmphasisMark : 3; // TextEmphasisMark | 105 unsigned textEmphasisMark : 3; // TextEmphasisMark |
| 107 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 106 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 108 unsigned m_textAlignLast : 3; // TextAlignLast | 107 unsigned m_textAlignLast : 3; // TextAlignLast |
| 109 unsigned m_textJustify : 2; // TextJustify | 108 unsigned m_textJustify : 2; // TextJustify |
| 110 unsigned m_textOrientation : 2; // TextOrientation | 109 unsigned m_textOrientation : 2; // TextOrientation |
| 111 unsigned m_textIndentLine : 1; // TextIndentEachLine | 110 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| (...skipping 25 matching lines...) Expand all Loading... |
| 137 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 136 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 138 | 137 |
| 139 private: | 138 private: |
| 140 StyleRareInheritedData(); | 139 StyleRareInheritedData(); |
| 141 StyleRareInheritedData(const StyleRareInheritedData&); | 140 StyleRareInheritedData(const StyleRareInheritedData&); |
| 142 }; | 141 }; |
| 143 | 142 |
| 144 } // namespace blink | 143 } // namespace blink |
| 145 | 144 |
| 146 #endif // StyleRareInheritedData_h | 145 #endif // StyleRareInheritedData_h |
| OLD | NEW |