| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 unsigned wordBreak : 2; // EWordBreak | 88 unsigned wordBreak : 2; // EWordBreak |
| 89 unsigned overflowWrap : 1; // EOverflowWrap | 89 unsigned overflowWrap : 1; // EOverflowWrap |
| 90 unsigned lineBreak : 3; // LineBreak | 90 unsigned lineBreak : 3; // LineBreak |
| 91 unsigned resize : 2; // EResize | 91 unsigned resize : 2; // EResize |
| 92 unsigned userSelect : 2; // EUserSelect | 92 unsigned userSelect : 2; // EUserSelect |
| 93 unsigned speak : 3; // ESpeak | 93 unsigned speak : 3; // ESpeak |
| 94 unsigned hyphens : 2; // Hyphens | 94 unsigned hyphens : 2; // Hyphens |
| 95 unsigned textEmphasisFill : 1; // TextEmphasisFill | 95 unsigned textEmphasisFill : 1; // TextEmphasisFill |
| 96 unsigned textEmphasisMark : 3; // TextEmphasisMark | 96 unsigned textEmphasisMark : 3; // TextEmphasisMark |
| 97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 98 unsigned m_textAlignLast : 3; // TextAlignLast |
| 98 unsigned m_textOrientation : 2; // TextOrientation | 99 unsigned m_textOrientation : 2; // TextOrientation |
| 99 #if ENABLE(CSS3_TEXT) | 100 #if ENABLE(CSS3_TEXT) |
| 100 unsigned m_textIndentLine : 1; // TextIndentEachLine | 101 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 101 #endif | 102 #endif |
| 102 unsigned m_lineBoxContain: 7; // LineBoxContain | 103 unsigned m_lineBoxContain: 7; // LineBoxContain |
| 103 // CSS Image Values Level 3 | 104 // CSS Image Values Level 3 |
| 104 unsigned m_imageRendering : 2; // EImageRendering | 105 unsigned m_imageRendering : 2; // EImageRendering |
| 105 unsigned m_lineSnap : 2; // LineSnap | 106 unsigned m_lineSnap : 2; // LineSnap |
| 106 unsigned m_lineAlign : 1; // LineAlign | 107 unsigned m_lineAlign : 1; // LineAlign |
| 107 #if ENABLE(CSS3_TEXT) | 108 #if ENABLE(CSS3_TEXT) |
| 108 unsigned m_textAlignLast : 3; // TextAlignLast | |
| 109 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition | 109 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition |
| 110 #endif // CSS3_TEXT | 110 #endif // CSS3_TEXT |
| 111 unsigned m_rubyPosition : 1; // RubyPosition | 111 unsigned m_rubyPosition : 1; // RubyPosition |
| 112 | 112 |
| 113 AtomicString hyphenationString; | 113 AtomicString hyphenationString; |
| 114 short hyphenationLimitBefore; | 114 short hyphenationLimitBefore; |
| 115 short hyphenationLimitAfter; | 115 short hyphenationLimitAfter; |
| 116 short hyphenationLimitLines; | 116 short hyphenationLimitLines; |
| 117 | 117 |
| 118 AtomicString locale; | 118 AtomicString locale; |
| 119 | 119 |
| 120 AtomicString textEmphasisCustomMark; | 120 AtomicString textEmphasisCustomMark; |
| 121 RefPtr<QuotesData> quotes; | 121 RefPtr<QuotesData> quotes; |
| 122 | 122 |
| 123 AtomicString m_lineGrid; | 123 AtomicString m_lineGrid; |
| 124 unsigned m_tabSize; | 124 unsigned m_tabSize; |
| 125 | 125 |
| 126 Color tapHighlightColor; | 126 Color tapHighlightColor; |
| 127 | 127 |
| 128 DataRef<StyleVariableData> m_variables; | 128 DataRef<StyleVariableData> m_variables; |
| 129 | 129 |
| 130 private: | 130 private: |
| 131 StyleRareInheritedData(); | 131 StyleRareInheritedData(); |
| 132 StyleRareInheritedData(const StyleRareInheritedData&); | 132 StyleRareInheritedData(const StyleRareInheritedData&); |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 } // namespace WebCore | 135 } // namespace WebCore |
| 136 | 136 |
| 137 #endif // StyleRareInheritedData_h | 137 #endif // StyleRareInheritedData_h |
| OLD | NEW |