| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 unsigned m_textAlignLast : 3; // TextAlignLast | 121 unsigned m_textAlignLast : 3; // TextAlignLast |
| 122 unsigned m_textJustify : 2; // TextJustify | 122 unsigned m_textJustify : 2; // TextJustify |
| 123 unsigned m_textOrientation : 2; // TextOrientation | 123 unsigned m_textOrientation : 2; // TextOrientation |
| 124 unsigned m_textIndentLine : 1; // TextIndentEachLine | 124 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 125 unsigned m_textIndentType : 1; // TextIndentHanging | 125 unsigned m_textIndentType : 1; // TextIndentHanging |
| 126 unsigned m_lineBoxContain: 7; // LineBoxContain | 126 unsigned m_lineBoxContain: 7; // LineBoxContain |
| 127 // CSS Image Values Level 3 | 127 // CSS Image Values Level 3 |
| 128 unsigned m_imageRendering : 3; // EImageRendering | 128 unsigned m_imageRendering : 3; // EImageRendering |
| 129 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition | 129 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition |
| 130 unsigned m_rubyPosition : 1; // RubyPosition | 130 unsigned m_rubyPosition : 1; // RubyPosition |
| 131 unsigned m_touchActionDelay : 1; // TouchActionDelay | |
| 132 | 131 |
| 133 // Though will-change is not itself an inherited property, the intent | 132 // Though will-change is not itself an inherited property, the intent |
| 134 // expressed by 'will-change: contents' includes descendants. | 133 // expressed by 'will-change: contents' includes descendants. |
| 135 unsigned m_subtreeWillChangeContents : 1; | 134 unsigned m_subtreeWillChangeContents : 1; |
| 136 | 135 |
| 137 AtomicString hyphenationString; | 136 AtomicString hyphenationString; |
| 138 short hyphenationLimitBefore; | 137 short hyphenationLimitBefore; |
| 139 short hyphenationLimitAfter; | 138 short hyphenationLimitAfter; |
| 140 short hyphenationLimitLines; | 139 short hyphenationLimitLines; |
| 141 | 140 |
| 142 AtomicString locale; | 141 AtomicString locale; |
| 143 | 142 |
| 144 AtomicString textEmphasisCustomMark; | 143 AtomicString textEmphasisCustomMark; |
| 145 RefPtr<QuotesData> quotes; | 144 RefPtr<QuotesData> quotes; |
| 146 | 145 |
| 147 unsigned m_tabSize; | 146 unsigned m_tabSize; |
| 148 | 147 |
| 149 Color tapHighlightColor; | 148 Color tapHighlightColor; |
| 150 | 149 |
| 151 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 150 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 152 | 151 |
| 153 private: | 152 private: |
| 154 StyleRareInheritedData(); | 153 StyleRareInheritedData(); |
| 155 StyleRareInheritedData(const StyleRareInheritedData&); | 154 StyleRareInheritedData(const StyleRareInheritedData&); |
| 156 }; | 155 }; |
| 157 | 156 |
| 158 } // namespace blink | 157 } // namespace blink |
| 159 | 158 |
| 160 #endif // StyleRareInheritedData_h | 159 #endif // StyleRareInheritedData_h |
| OLD | NEW |