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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 unsigned overflowWrap : 1; // EOverflowWrap | 87 unsigned overflowWrap : 1; // EOverflowWrap |
88 unsigned lineBreak : 3; // LineBreak | 88 unsigned lineBreak : 3; // LineBreak |
89 unsigned resize : 2; // EResize | 89 unsigned resize : 2; // EResize |
90 unsigned userSelect : 2; // EUserSelect | 90 unsigned userSelect : 2; // EUserSelect |
91 unsigned speak : 3; // ESpeak | 91 unsigned speak : 3; // ESpeak |
92 unsigned hyphens : 2; // Hyphens | 92 unsigned hyphens : 2; // Hyphens |
93 unsigned textEmphasisFill : 1; // TextEmphasisFill | 93 unsigned textEmphasisFill : 1; // TextEmphasisFill |
94 unsigned textEmphasisMark : 3; // TextEmphasisMark | 94 unsigned textEmphasisMark : 3; // TextEmphasisMark |
95 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 95 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
96 unsigned m_textAlignLast : 3; // TextAlignLast | 96 unsigned m_textAlignLast : 3; // TextAlignLast |
| 97 unsigned m_textJustify : 2; // TextJustify |
97 unsigned m_textOrientation : 2; // TextOrientation | 98 unsigned m_textOrientation : 2; // TextOrientation |
98 unsigned m_textIndentLine : 1; // TextIndentEachLine | 99 unsigned m_textIndentLine : 1; // TextIndentEachLine |
99 unsigned m_lineBoxContain: 7; // LineBoxContain | 100 unsigned m_lineBoxContain: 7; // LineBoxContain |
100 // CSS Image Values Level 3 | 101 // CSS Image Values Level 3 |
101 unsigned m_imageRendering : 2; // EImageRendering | 102 unsigned m_imageRendering : 2; // EImageRendering |
102 unsigned m_lineSnap : 2; // LineSnap | 103 unsigned m_lineSnap : 2; // LineSnap |
103 unsigned m_lineAlign : 1; // LineAlign | 104 unsigned m_lineAlign : 1; // LineAlign |
104 #if ENABLE(CSS3_TEXT) | 105 #if ENABLE(CSS3_TEXT) |
105 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition | 106 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition |
106 #endif // CSS3_TEXT | 107 #endif // CSS3_TEXT |
(...skipping 17 matching lines...) Expand all Loading... |
124 DataRef<StyleVariableData> m_variables; | 125 DataRef<StyleVariableData> m_variables; |
125 | 126 |
126 private: | 127 private: |
127 StyleRareInheritedData(); | 128 StyleRareInheritedData(); |
128 StyleRareInheritedData(const StyleRareInheritedData&); | 129 StyleRareInheritedData(const StyleRareInheritedData&); |
129 }; | 130 }; |
130 | 131 |
131 } // namespace WebCore | 132 } // namespace WebCore |
132 | 133 |
133 #endif // StyleRareInheritedData_h | 134 #endif // StyleRareInheritedData_h |
OLD | NEW |