| 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 |
| 223 AtomicString hyphenationString; | 225 AtomicString hyphenationString; |
| 224 short hyphenationLimitBefore; | 226 short hyphenationLimitBefore; |
| 225 short hyphenationLimitAfter; | 227 short hyphenationLimitAfter; |
| 226 short hyphenationLimitLines; | 228 short hyphenationLimitLines; |
| 227 | 229 |
| 228 uint8_t m_lineHeightStep; | 230 uint8_t m_snapHeightUnit; |
| 229 | 231 |
| 230 AtomicString textEmphasisCustomMark; | 232 AtomicString textEmphasisCustomMark; |
| 231 RefPtr<QuotesData> quotes; | 233 RefPtr<QuotesData> quotes; |
| 232 | 234 |
| 233 Color tapHighlightColor; | 235 Color tapHighlightColor; |
| 234 | 236 |
| 235 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 237 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 236 TabSize m_tabSize; | 238 TabSize m_tabSize; |
| 237 | 239 |
| 238 RefPtr<StyleInheritedVariables> variables; | 240 RefPtr<StyleInheritedVariables> variables; |
| 239 TextSizeAdjust m_textSizeAdjust; | 241 TextSizeAdjust m_textSizeAdjust; |
| 240 | 242 |
| 241 private: | 243 private: |
| 242 StyleRareInheritedData(); | 244 StyleRareInheritedData(); |
| 243 StyleRareInheritedData(const StyleRareInheritedData&); | 245 StyleRareInheritedData(const StyleRareInheritedData&); |
| 244 }; | 246 }; |
| 245 | 247 |
| 246 } // namespace blink | 248 } // namespace blink |
| 247 | 249 |
| 248 #endif // StyleRareInheritedData_h | 250 #endif // StyleRareInheritedData_h |
| OLD | NEW |