| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 StyleColor m_visitedLinkTextDecorationColor; | 146 StyleColor m_visitedLinkTextDecorationColor; |
| 147 StyleColor m_visitedLinkBackgroundColor; | 147 StyleColor m_visitedLinkBackgroundColor; |
| 148 StyleColor m_visitedLinkOutlineColor; | 148 StyleColor m_visitedLinkOutlineColor; |
| 149 StyleColor m_visitedLinkBorderLeftColor; | 149 StyleColor m_visitedLinkBorderLeftColor; |
| 150 StyleColor m_visitedLinkBorderRightColor; | 150 StyleColor m_visitedLinkBorderRightColor; |
| 151 StyleColor m_visitedLinkBorderTopColor; | 151 StyleColor m_visitedLinkBorderTopColor; |
| 152 StyleColor m_visitedLinkBorderBottomColor; | 152 StyleColor m_visitedLinkBorderBottomColor; |
| 153 | 153 |
| 154 Vector<String> m_callbackSelectors; | 154 Vector<String> m_callbackSelectors; |
| 155 | 155 |
| 156 std::unique_ptr<Vector<Persistent<StyleImage>>> m_paintImages; |
| 157 |
| 156 StyleContentAlignmentData m_alignContent; | 158 StyleContentAlignmentData m_alignContent; |
| 157 StyleSelfAlignmentData m_alignItems; | 159 StyleSelfAlignmentData m_alignItems; |
| 158 StyleSelfAlignmentData m_alignSelf; | 160 StyleSelfAlignmentData m_alignSelf; |
| 159 StyleContentAlignmentData m_justifyContent; | 161 StyleContentAlignmentData m_justifyContent; |
| 160 StyleSelfAlignmentData m_justifyItems; | 162 StyleSelfAlignmentData m_justifyItems; |
| 161 StyleSelfAlignmentData m_justifySelf; | 163 StyleSelfAlignmentData m_justifySelf; |
| 162 | 164 |
| 163 unsigned m_pageSizeType : 2; // PageSizeType | 165 unsigned m_pageSizeType : 2; // PageSizeType |
| 164 unsigned m_transformStyle3D : 1; // ETransformStyle3D | 166 unsigned m_transformStyle3D : 1; // ETransformStyle3D |
| 165 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility | 167 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 217 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 216 | 218 |
| 217 private: | 219 private: |
| 218 StyleRareNonInheritedData(); | 220 StyleRareNonInheritedData(); |
| 219 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 221 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 220 }; | 222 }; |
| 221 | 223 |
| 222 } // namespace blink | 224 } // namespace blink |
| 223 | 225 |
| 224 #endif // StyleRareNonInheritedData_h | 226 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |