| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 unsigned textEmphasisPosition : 1; // TextEmphasisPosition | 171 unsigned textEmphasisPosition : 1; // TextEmphasisPosition |
| 172 unsigned m_textAlignLast : 3; // TextAlignLast | 172 unsigned m_textAlignLast : 3; // TextAlignLast |
| 173 unsigned m_textJustify : 2; // TextJustify | 173 unsigned m_textJustify : 2; // TextJustify |
| 174 unsigned m_textOrientation : 2; // TextOrientation | 174 unsigned m_textOrientation : 2; // TextOrientation |
| 175 unsigned m_textCombine : 1; // CSS3 text-combine-upright properties | 175 unsigned m_textCombine : 1; // CSS3 text-combine-upright properties |
| 176 unsigned m_textIndentLine : 1; // TextIndentEachLine | 176 unsigned m_textIndentLine : 1; // TextIndentEachLine |
| 177 unsigned m_textIndentType : 1; // TextIndentHanging | 177 unsigned m_textIndentType : 1; // TextIndentHanging |
| 178 // CSS Image Values Level 3 | 178 // CSS Image Values Level 3 |
| 179 unsigned m_imageRendering : 3; // EImageRendering | 179 unsigned m_imageRendering : 3; // EImageRendering |
| 180 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition | 180 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition |
| 181 unsigned m_textDecorationSkip : 3; // TextDecorationSkip |
| 181 unsigned m_rubyPosition : 1; // RubyPosition | 182 unsigned m_rubyPosition : 1; // RubyPosition |
| 182 | 183 |
| 183 // Though will-change is not itself an inherited property, the intent | 184 // Though will-change is not itself an inherited property, the intent |
| 184 // expressed by 'will-change: contents' includes descendants. | 185 // expressed by 'will-change: contents' includes descendants. |
| 185 unsigned m_subtreeWillChangeContents : 1; | 186 unsigned m_subtreeWillChangeContents : 1; |
| 186 | 187 |
| 187 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; | 188 unsigned m_selfOrAncestorHasDirAutoAttribute : 1; |
| 188 | 189 |
| 189 unsigned m_respectImageOrientation : 1; | 190 unsigned m_respectImageOrientation : 1; |
| 190 | 191 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 209 TextSizeAdjust m_textSizeAdjust; | 210 TextSizeAdjust m_textSizeAdjust; |
| 210 | 211 |
| 211 private: | 212 private: |
| 212 StyleRareInheritedData(); | 213 StyleRareInheritedData(); |
| 213 StyleRareInheritedData(const StyleRareInheritedData&); | 214 StyleRareInheritedData(const StyleRareInheritedData&); |
| 214 }; | 215 }; |
| 215 | 216 |
| 216 } // namespace blink | 217 } // namespace blink |
| 217 | 218 |
| 218 #endif // StyleRareInheritedData_h | 219 #endif // StyleRareInheritedData_h |
| OLD | NEW |