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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 unsigned m_lineBoxContain: 7; // LineBoxContain | 103 unsigned m_lineBoxContain: 7; // LineBoxContain |
104 // CSS Image Values Level 3 | 104 // CSS Image Values Level 3 |
105 unsigned m_imageRendering : 2; // EImageRendering | 105 unsigned m_imageRendering : 2; // EImageRendering |
106 unsigned m_lineSnap : 2; // LineSnap | 106 unsigned m_lineSnap : 2; // LineSnap |
107 unsigned m_lineAlign : 1; // LineAlign | 107 unsigned m_lineAlign : 1; // LineAlign |
108 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) | 108 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) |
109 unsigned useTouchOverflowScrolling: 1; | 109 unsigned useTouchOverflowScrolling: 1; |
110 #endif | 110 #endif |
111 #if ENABLE(CSS3_TEXT) | 111 #if ENABLE(CSS3_TEXT) |
112 unsigned m_textAlignLast : 3; // TextAlignLast | 112 unsigned m_textAlignLast : 3; // TextAlignLast |
| 113 #endif // CSS3_TEXT |
113 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition | 114 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition |
114 #endif // CSS3_TEXT | |
115 unsigned m_rubyPosition : 1; // RubyPosition | 115 unsigned m_rubyPosition : 1; // RubyPosition |
116 | 116 |
117 AtomicString hyphenationString; | 117 AtomicString hyphenationString; |
118 short hyphenationLimitBefore; | 118 short hyphenationLimitBefore; |
119 short hyphenationLimitAfter; | 119 short hyphenationLimitAfter; |
120 short hyphenationLimitLines; | 120 short hyphenationLimitLines; |
121 | 121 |
122 AtomicString locale; | 122 AtomicString locale; |
123 | 123 |
124 AtomicString textEmphasisCustomMark; | 124 AtomicString textEmphasisCustomMark; |
125 RefPtr<QuotesData> quotes; | 125 RefPtr<QuotesData> quotes; |
126 | 126 |
127 AtomicString m_lineGrid; | 127 AtomicString m_lineGrid; |
128 unsigned m_tabSize; | 128 unsigned m_tabSize; |
129 | 129 |
130 Color tapHighlightColor; | 130 Color tapHighlightColor; |
131 | 131 |
132 DataRef<StyleVariableData> m_variables; | 132 DataRef<StyleVariableData> m_variables; |
133 | 133 |
134 private: | 134 private: |
135 StyleRareInheritedData(); | 135 StyleRareInheritedData(); |
136 StyleRareInheritedData(const StyleRareInheritedData&); | 136 StyleRareInheritedData(const StyleRareInheritedData&); |
137 }; | 137 }; |
138 | 138 |
139 } // namespace WebCore | 139 } // namespace WebCore |
140 | 140 |
141 #endif // StyleRareInheritedData_h | 141 #endif // StyleRareInheritedData_h |
OLD | NEW |