| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 unsigned m_rubyPosition : 1; // RubyPosition | 213 unsigned m_rubyPosition : 1; // RubyPosition |
| 214 | 214 |
| 215 // Though will-change is not itself an inherited property, the intent | 215 // Though will-change is not itself an inherited property, the intent |
| 216 // expressed by 'will-change: contents' includes descendants. | 216 // expressed by 'will-change: contents' includes descendants. |
| 217 unsigned m_subtreeWillChangeContents : 1; | 217 unsigned m_subtreeWillChangeContents : 1; |
| 218 | 218 |
| 219 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; | 219 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; |
| 220 | 220 |
| 221 unsigned m_respectImageOrientation : 1; | 221 unsigned m_respectImageOrientation : 1; |
| 222 | 222 |
| 223 unsigned m_snapHeightPosition : 7; | |
| 224 | |
| 225 AtomicString hyphenationString; | 223 AtomicString hyphenationString; |
| 226 short hyphenationLimitBefore; | 224 short hyphenationLimitBefore; |
| 227 short hyphenationLimitAfter; | 225 short hyphenationLimitAfter; |
| 228 short hyphenationLimitLines; | 226 short hyphenationLimitLines; |
| 229 | 227 |
| 230 uint8_t m_snapHeightUnit; | 228 uint8_t m_lineHeightStep; |
| 231 | 229 |
| 232 AtomicString textEmphasisCustomMark; | 230 AtomicString textEmphasisCustomMark; |
| 233 RefPtr<QuotesData> quotes; | 231 RefPtr<QuotesData> quotes; |
| 234 | 232 |
| 235 Color tapHighlightColor; | 233 Color tapHighlightColor; |
| 236 | 234 |
| 237 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 235 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 238 TabSize m_tabSize; | 236 TabSize m_tabSize; |
| 239 | 237 |
| 240 RefPtr<StyleInheritedVariables> variables; | 238 RefPtr<StyleInheritedVariables> variables; |
| 241 TextSizeAdjust m_textSizeAdjust; | 239 TextSizeAdjust m_textSizeAdjust; |
| 242 | 240 |
| 243 private: | 241 private: |
| 244 StyleRareInheritedData(); | 242 StyleRareInheritedData(); |
| 245 StyleRareInheritedData(const StyleRareInheritedData&); | 243 StyleRareInheritedData(const StyleRareInheritedData&); |
| 246 }; | 244 }; |
| 247 | 245 |
| 248 } // namespace blink | 246 } // namespace blink |
| 249 | 247 |
| 250 #endif // StyleRareInheritedData_h | 248 #endif // StyleRareInheritedData_h |
| OLD | NEW |