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