| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 unsigned userSelect : 2; // EUserSelect | 110 unsigned userSelect : 2; // EUserSelect |
| 111 unsigned speak : 3; // ESpeak | 111 unsigned speak : 3; // ESpeak |
| 112 unsigned hyphens : 2; // Hyphens | 112 unsigned hyphens : 2; // Hyphens |
| 113 unsigned textEmphasisFill : 1; // TextEmphasisFill | 113 unsigned textEmphasisFill : 1; // TextEmphasisFill |
| 114 unsigned textEmphasisMark : 3; // TextEmphasisMark | 114 unsigned textEmphasisMark : 3; // TextEmphasisMark |
| 115 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 115 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 116 unsigned m_textAlignLast : 3; // TextAlignLast | 116 unsigned m_textAlignLast : 3; // TextAlignLast |
| 117 unsigned m_textJustify : 2; // TextJustify | 117 unsigned m_textJustify : 2; // TextJustify |
| 118 unsigned m_textOrientation : 2; // TextOrientation | 118 unsigned m_textOrientation : 2; // TextOrientation |
| 119 unsigned m_textIndentLine : 1; // TextIndentEachLine | 119 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 120 unsigned m_textIndentType : 1; // TextIndentHanging |
| 120 unsigned m_lineBoxContain: 7; // LineBoxContain | 121 unsigned m_lineBoxContain: 7; // LineBoxContain |
| 121 // CSS Image Values Level 3 | 122 // CSS Image Values Level 3 |
| 122 unsigned m_imageRendering : 2; // EImageRendering | 123 unsigned m_imageRendering : 2; // EImageRendering |
| 123 unsigned m_textUnderlinePosition : 2; // TextUnderlinePosition | 124 unsigned m_textUnderlinePosition : 2; // TextUnderlinePosition |
| 124 unsigned m_rubyPosition : 1; // RubyPosition | 125 unsigned m_rubyPosition : 1; // RubyPosition |
| 125 unsigned m_touchActionDelay : 1; // TouchActionDelay | 126 unsigned m_touchActionDelay : 1; // TouchActionDelay |
| 126 | 127 |
| 127 AtomicString hyphenationString; | 128 AtomicString hyphenationString; |
| 128 short hyphenationLimitBefore; | 129 short hyphenationLimitBefore; |
| 129 short hyphenationLimitAfter; | 130 short hyphenationLimitAfter; |
| 130 short hyphenationLimitLines; | 131 short hyphenationLimitLines; |
| 131 | 132 |
| 132 AtomicString locale; | 133 AtomicString locale; |
| 133 | 134 |
| 134 AtomicString textEmphasisCustomMark; | 135 AtomicString textEmphasisCustomMark; |
| 135 RefPtr<QuotesData> quotes; | 136 RefPtr<QuotesData> quotes; |
| 136 | 137 |
| 137 unsigned m_tabSize; | 138 unsigned m_tabSize; |
| 138 | 139 |
| 139 Color tapHighlightColor; | 140 Color tapHighlightColor; |
| 140 | 141 |
| 141 private: | 142 private: |
| 142 StyleRareInheritedData(); | 143 StyleRareInheritedData(); |
| 143 StyleRareInheritedData(const StyleRareInheritedData&); | 144 StyleRareInheritedData(const StyleRareInheritedData&); |
| 144 }; | 145 }; |
| 145 | 146 |
| 146 } // namespace WebCore | 147 } // namespace WebCore |
| 147 | 148 |
| 148 #endif // StyleRareInheritedData_h | 149 #endif // StyleRareInheritedData_h |
| OLD | NEW |