| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 unsigned m_textEmphasisColorIsCurrentColor : 1; | 105 unsigned m_textEmphasisColorIsCurrentColor : 1; |
| 106 unsigned m_visitedLinkTextStrokeColorIsCurrentColor : 1; | 106 unsigned m_visitedLinkTextStrokeColorIsCurrentColor : 1; |
| 107 unsigned m_visitedLinkTextFillColorIsCurrentColor : 1; | 107 unsigned m_visitedLinkTextFillColorIsCurrentColor : 1; |
| 108 unsigned m_visitedLinkTextEmphasisColorIsCurrentColor : 1; | 108 unsigned m_visitedLinkTextEmphasisColorIsCurrentColor : 1; |
| 109 | 109 |
| 110 unsigned textSecurity : 2; // ETextSecurity | 110 unsigned textSecurity : 2; // ETextSecurity |
| 111 unsigned userModify : 2; // EUserModify (editing) | 111 unsigned userModify : 2; // EUserModify (editing) |
| 112 unsigned wordBreak : 2; // EWordBreak | 112 unsigned wordBreak : 2; // EWordBreak |
| 113 unsigned overflowWrap : 1; // EOverflowWrap | 113 unsigned overflowWrap : 1; // EOverflowWrap |
| 114 unsigned lineBreak : 3; // LineBreak | 114 unsigned lineBreak : 3; // LineBreak |
| 115 unsigned resize : 2; // EResize | |
| 116 unsigned userSelect : 2; // EUserSelect | 115 unsigned userSelect : 2; // EUserSelect |
| 117 unsigned speak : 3; // ESpeak | 116 unsigned speak : 3; // ESpeak |
| 118 unsigned hyphens : 2; // Hyphens | 117 unsigned hyphens : 2; // Hyphens |
| 119 unsigned textEmphasisFill : 1; // TextEmphasisFill | 118 unsigned textEmphasisFill : 1; // TextEmphasisFill |
| 120 unsigned textEmphasisMark : 3; // TextEmphasisMark | 119 unsigned textEmphasisMark : 3; // TextEmphasisMark |
| 121 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 120 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 122 unsigned m_textAlignLast : 3; // TextAlignLast | 121 unsigned m_textAlignLast : 3; // TextAlignLast |
| 123 unsigned m_textJustify : 2; // TextJustify | 122 unsigned m_textJustify : 2; // TextJustify |
| 124 unsigned m_textOrientation : 2; // TextOrientation | 123 unsigned m_textOrientation : 2; // TextOrientation |
| 125 unsigned m_textIndentLine : 1; // TextIndentEachLine | 124 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| (...skipping 26 matching lines...) Expand all Loading... |
| 152 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 151 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 153 | 152 |
| 154 private: | 153 private: |
| 155 StyleRareInheritedData(); | 154 StyleRareInheritedData(); |
| 156 StyleRareInheritedData(const StyleRareInheritedData&); | 155 StyleRareInheritedData(const StyleRareInheritedData&); |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace blink | 158 } // namespace blink |
| 160 | 159 |
| 161 #endif // StyleRareInheritedData_h | 160 #endif // StyleRareInheritedData_h |
| OLD | NEW |