| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 unsigned m_imageRendering : 3; // EImageRendering | 130 unsigned m_imageRendering : 3; // EImageRendering |
| 131 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition | 131 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition |
| 132 unsigned m_rubyPosition : 1; // RubyPosition | 132 unsigned m_rubyPosition : 1; // RubyPosition |
| 133 | 133 |
| 134 // Though will-change is not itself an inherited property, the intent | 134 // Though will-change is not itself an inherited property, the intent |
| 135 // expressed by 'will-change: contents' includes descendants. | 135 // expressed by 'will-change: contents' includes descendants. |
| 136 unsigned m_subtreeWillChangeContents : 1; | 136 unsigned m_subtreeWillChangeContents : 1; |
| 137 | 137 |
| 138 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; | 138 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; |
| 139 | 139 |
| 140 unsigned m_respectImageOrientation : 1; |
| 141 |
| 140 AtomicString hyphenationString; | 142 AtomicString hyphenationString; |
| 141 short hyphenationLimitBefore; | 143 short hyphenationLimitBefore; |
| 142 short hyphenationLimitAfter; | 144 short hyphenationLimitAfter; |
| 143 short hyphenationLimitLines; | 145 short hyphenationLimitLines; |
| 144 | 146 |
| 145 AtomicString locale; | 147 AtomicString locale; |
| 146 | 148 |
| 147 AtomicString textEmphasisCustomMark; | 149 AtomicString textEmphasisCustomMark; |
| 148 RefPtr<QuotesData> quotes; | 150 RefPtr<QuotesData> quotes; |
| 149 | 151 |
| 150 Color tapHighlightColor; | 152 Color tapHighlightColor; |
| 151 | 153 |
| 152 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 154 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 153 TabSize m_tabSize; | 155 TabSize m_tabSize; |
| 154 | 156 |
| 155 private: | 157 private: |
| 156 StyleRareInheritedData(); | 158 StyleRareInheritedData(); |
| 157 StyleRareInheritedData(const StyleRareInheritedData&); | 159 StyleRareInheritedData(const StyleRareInheritedData&); |
| 158 }; | 160 }; |
| 159 | 161 |
| 160 } // namespace blink | 162 } // namespace blink |
| 161 | 163 |
| 162 #endif // StyleRareInheritedData_h | 164 #endif // StyleRareInheritedData_h |
| OLD | NEW |