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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 unsigned hyphens : 2; // Hyphens | 124 unsigned hyphens : 2; // Hyphens |
125 unsigned textEmphasisFill : 1; // TextEmphasisFill | 125 unsigned textEmphasisFill : 1; // TextEmphasisFill |
126 unsigned textEmphasisMark : 3; // TextEmphasisMark | 126 unsigned textEmphasisMark : 3; // TextEmphasisMark |
127 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 127 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
128 unsigned m_textAlignLast : 3; // TextAlignLast | 128 unsigned m_textAlignLast : 3; // TextAlignLast |
129 unsigned m_textJustify : 2; // TextJustify | 129 unsigned m_textJustify : 2; // TextJustify |
130 unsigned m_textOrientation : 2; // TextOrientation | 130 unsigned m_textOrientation : 2; // TextOrientation |
131 unsigned m_textCombine : 1; // CSS3 text-combine properties | 131 unsigned m_textCombine : 1; // CSS3 text-combine properties |
132 unsigned m_textIndentLine : 1; // TextIndentEachLine | 132 unsigned m_textIndentLine : 1; // TextIndentEachLine |
133 unsigned m_textIndentType : 1; // TextIndentHanging | 133 unsigned m_textIndentType : 1; // TextIndentHanging |
134 unsigned m_lineBoxContain: 7; // LineBoxContain | |
135 // CSS Image Values Level 3 | 134 // CSS Image Values Level 3 |
136 unsigned m_imageRendering : 3; // EImageRendering | 135 unsigned m_imageRendering : 3; // EImageRendering |
137 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition | 136 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition |
138 unsigned m_rubyPosition : 1; // RubyPosition | 137 unsigned m_rubyPosition : 1; // RubyPosition |
139 | 138 |
140 // Though will-change is not itself an inherited property, the intent | 139 // Though will-change is not itself an inherited property, the intent |
141 // expressed by 'will-change: contents' includes descendants. | 140 // expressed by 'will-change: contents' includes descendants. |
142 unsigned m_subtreeWillChangeContents : 1; | 141 unsigned m_subtreeWillChangeContents : 1; |
143 | 142 |
144 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; | 143 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; |
(...skipping 16 matching lines...) Expand all Loading... |
161 TabSize m_tabSize; | 160 TabSize m_tabSize; |
162 | 161 |
163 private: | 162 private: |
164 StyleRareInheritedData(); | 163 StyleRareInheritedData(); |
165 StyleRareInheritedData(const StyleRareInheritedData&); | 164 StyleRareInheritedData(const StyleRareInheritedData&); |
166 }; | 165 }; |
167 | 166 |
168 } // namespace blink | 167 } // namespace blink |
169 | 168 |
170 #endif // StyleRareInheritedData_h | 169 #endif // StyleRareInheritedData_h |
OLD | NEW |