| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 #if ENABLE(CSS3_TEXT) | 100 #if ENABLE(CSS3_TEXT) |
| 101 unsigned m_textIndentLine : 1; // TextIndentEachLine | 101 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 102 #endif | 102 #endif |
| 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(CSS3_TEXT) | 108 #if ENABLE(CSS3_TEXT) |
| 109 unsigned m_textAlignLast : 3; // TextAlignLast | 109 unsigned m_textAlignLast : 3; // TextAlignLast |
| 110 unsigned m_textJustify : 2; // TextJustify |
| 110 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition | 111 unsigned m_textUnderlinePosition : 3; // TextUnderlinePosition |
| 111 #endif // CSS3_TEXT | 112 #endif // CSS3_TEXT |
| 112 unsigned m_rubyPosition : 1; // RubyPosition | 113 unsigned m_rubyPosition : 1; // RubyPosition |
| 113 | 114 |
| 114 AtomicString hyphenationString; | 115 AtomicString hyphenationString; |
| 115 short hyphenationLimitBefore; | 116 short hyphenationLimitBefore; |
| 116 short hyphenationLimitAfter; | 117 short hyphenationLimitAfter; |
| 117 short hyphenationLimitLines; | 118 short hyphenationLimitLines; |
| 118 | 119 |
| 119 AtomicString locale; | 120 AtomicString locale; |
| 120 | 121 |
| 121 AtomicString textEmphasisCustomMark; | 122 AtomicString textEmphasisCustomMark; |
| 122 RefPtr<QuotesData> quotes; | 123 RefPtr<QuotesData> quotes; |
| 123 | 124 |
| 124 AtomicString m_lineGrid; | 125 AtomicString m_lineGrid; |
| 125 unsigned m_tabSize; | 126 unsigned m_tabSize; |
| 126 | 127 |
| 127 Color tapHighlightColor; | 128 Color tapHighlightColor; |
| 128 | 129 |
| 129 DataRef<StyleVariableData> m_variables; | 130 DataRef<StyleVariableData> m_variables; |
| 130 | 131 |
| 131 private: | 132 private: |
| 132 StyleRareInheritedData(); | 133 StyleRareInheritedData(); |
| 133 StyleRareInheritedData(const StyleRareInheritedData&); | 134 StyleRareInheritedData(const StyleRareInheritedData&); |
| 134 }; | 135 }; |
| 135 | 136 |
| 136 } // namespace WebCore | 137 } // namespace WebCore |
| 137 | 138 |
| 138 #endif // StyleRareInheritedData_h | 139 #endif // StyleRareInheritedData_h |
| OLD | NEW |