| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 unsigned m_lineBoxContain: 7; // LineBoxContain | 99 unsigned m_lineBoxContain: 7; // LineBoxContain |
| 100 // CSS Image Values Level 3 | 100 // CSS Image Values Level 3 |
| 101 unsigned m_imageRendering : 3; // EImageRendering | 101 unsigned m_imageRendering : 3; // EImageRendering |
| 102 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition | 102 unsigned m_textUnderlinePosition : 1; // TextUnderlinePosition |
| 103 unsigned m_touchActionDelay : 1; // TouchActionDelay | 103 unsigned m_touchActionDelay : 1; // TouchActionDelay |
| 104 | 104 |
| 105 // Though will-change is not itself an inherited property, the intent | 105 // Though will-change is not itself an inherited property, the intent |
| 106 // expressed by 'will-change: contents' includes descendants. | 106 // expressed by 'will-change: contents' includes descendants. |
| 107 unsigned m_subtreeWillChangeContents : 1; | 107 unsigned m_subtreeWillChangeContents : 1; |
| 108 | 108 |
| 109 // Paged media properties. | |
| 110 unsigned m_hasAutoWidows : 1; | |
| 111 short widows; | |
| 112 | |
| 113 short hyphenationLimitBefore; | 109 short hyphenationLimitBefore; |
| 114 short hyphenationLimitAfter; | 110 short hyphenationLimitAfter; |
| 115 short hyphenationLimitLines; | 111 short hyphenationLimitLines; |
| 116 AtomicString hyphenationString; | 112 AtomicString hyphenationString; |
| 117 | 113 |
| 118 AtomicString locale; | 114 AtomicString locale; |
| 119 | 115 |
| 120 AtomicString textEmphasisCustomMark; | 116 AtomicString textEmphasisCustomMark; |
| 121 RefPtr<QuotesData> quotes; | 117 RefPtr<QuotesData> quotes; |
| 122 | 118 |
| 123 unsigned m_tabSize; | 119 unsigned m_tabSize; |
| 124 | 120 |
| 125 Color tapHighlightColor; | 121 Color tapHighlightColor; |
| 126 | 122 |
| 127 RefPtr<AppliedTextDecorationList> appliedTextDecorations; | 123 RefPtr<AppliedTextDecorationList> appliedTextDecorations; |
| 128 | 124 |
| 129 private: | 125 private: |
| 130 StyleRareInheritedData(); | 126 StyleRareInheritedData(); |
| 131 StyleRareInheritedData(const StyleRareInheritedData&); | 127 StyleRareInheritedData(const StyleRareInheritedData&); |
| 132 }; | 128 }; |
| 133 | 129 |
| 134 } // namespace blink | 130 } // namespace blink |
| 135 | 131 |
| 136 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERAREINHERITEDDATA_H_ | 132 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERAREINHERITEDDATA_H_ |
| OLD | NEW |