| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 97 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 98 unsigned m_textOrientation : 2; // TextOrientation | 98 unsigned m_textOrientation : 2; // TextOrientation |
| 99 #if ENABLE(CSS3_TEXT) | 99 #if ENABLE(CSS3_TEXT) |
| 100 unsigned m_textIndentLine : 1; // TextIndentEachLine | 100 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 101 #endif | 101 #endif |
| 102 unsigned m_lineBoxContain: 7; // LineBoxContain | 102 unsigned m_lineBoxContain: 7; // LineBoxContain |
| 103 // CSS Image Values Level 3 | 103 // CSS Image Values Level 3 |
| 104 unsigned m_imageRendering : 2; // EImageRendering | 104 unsigned m_imageRendering : 2; // EImageRendering |
| 105 unsigned m_lineSnap : 2; // LineSnap | 105 unsigned m_lineSnap : 2; // LineSnap |
| 106 unsigned m_lineAlign : 1; // LineAlign | 106 unsigned m_lineAlign : 1; // LineAlign |
| 107 #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) | |
| 108 unsigned useTouchOverflowScrolling: 1; | |
| 109 #endif | |
| 110 #if ENABLE(CSS3_TEXT) | 107 #if ENABLE(CSS3_TEXT) |
| 111 unsigned m_textAlignLast : 3; // TextAlignLast | 108 unsigned m_textAlignLast : 3; // TextAlignLast |
| 112 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition | 109 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition |
| 113 #endif // CSS3_TEXT | 110 #endif // CSS3_TEXT |
| 114 unsigned m_rubyPosition : 1; // RubyPosition | 111 unsigned m_rubyPosition : 1; // RubyPosition |
| 115 | 112 |
| 116 AtomicString hyphenationString; | 113 AtomicString hyphenationString; |
| 117 short hyphenationLimitBefore; | 114 short hyphenationLimitBefore; |
| 118 short hyphenationLimitAfter; | 115 short hyphenationLimitAfter; |
| 119 short hyphenationLimitLines; | 116 short hyphenationLimitLines; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 131 DataRef<StyleVariableData> m_variables; | 128 DataRef<StyleVariableData> m_variables; |
| 132 | 129 |
| 133 private: | 130 private: |
| 134 StyleRareInheritedData(); | 131 StyleRareInheritedData(); |
| 135 StyleRareInheritedData(const StyleRareInheritedData&); | 132 StyleRareInheritedData(const StyleRareInheritedData&); |
| 136 }; | 133 }; |
| 137 | 134 |
| 138 } // namespace WebCore | 135 } // namespace WebCore |
| 139 | 136 |
| 140 #endif // StyleRareInheritedData_h | 137 #endif // StyleRareInheritedData_h |
| OLD | NEW |