| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 118 |
| 119 LengthSize m_pageSize; | 119 LengthSize m_pageSize; |
| 120 | 120 |
| 121 RefPtr<ShapeValue> m_shapeOutside; | 121 RefPtr<ShapeValue> m_shapeOutside; |
| 122 Length m_shapeMargin; | 122 Length m_shapeMargin; |
| 123 float m_shapeImageThreshold; | 123 float m_shapeImageThreshold; |
| 124 | 124 |
| 125 RefPtr<ClipPathOperation> m_clipPath; | 125 RefPtr<ClipPathOperation> m_clipPath; |
| 126 | 126 |
| 127 StyleColor m_textDecorationColor; | 127 StyleColor m_textDecorationColor; |
| 128 StyleColor m_visitedLinkTextDecorationColor; | |
| 129 StyleColor m_visitedLinkBackgroundColor; | |
| 130 StyleColor m_visitedLinkOutlineColor; | |
| 131 StyleColor m_visitedLinkBorderLeftColor; | |
| 132 StyleColor m_visitedLinkBorderRightColor; | |
| 133 StyleColor m_visitedLinkBorderTopColor; | |
| 134 StyleColor m_visitedLinkBorderBottomColor; | |
| 135 | 128 |
| 136 int m_order; | 129 int m_order; |
| 137 | 130 |
| 138 LengthPoint m_objectPosition; | 131 LengthPoint m_objectPosition; |
| 139 | 132 |
| 140 unsigned m_pageSizeType : 2; // PageSizeType | 133 unsigned m_pageSizeType : 2; // PageSizeType |
| 141 unsigned m_transformStyle3D : 1; // ETransformStyle3D | 134 unsigned m_transformStyle3D : 1; // ETransformStyle3D |
| 142 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility | 135 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility |
| 143 | 136 |
| 144 unsigned m_alignContent : 3; // EAlignContent | 137 unsigned m_alignContent : 3; // EAlignContent |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 unsigned m_hasInlineTransform : 1; | 190 unsigned m_hasInlineTransform : 1; |
| 198 | 191 |
| 199 private: | 192 private: |
| 200 StyleRareNonInheritedData(); | 193 StyleRareNonInheritedData(); |
| 201 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 194 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 202 }; | 195 }; |
| 203 | 196 |
| 204 } // namespace blink | 197 } // namespace blink |
| 205 | 198 |
| 206 #endif // StyleRareNonInheritedData_h | 199 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |