OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 && m_textDecorationColor == o.m_textDecorationColor | 195 && m_textDecorationColor == o.m_textDecorationColor |
196 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo
r | 196 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo
r |
197 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor | 197 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor |
198 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor | 198 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor |
199 && m_visitedLinkBorderLeftColor == o.m_visitedLinkBorderLeftColor | 199 && m_visitedLinkBorderLeftColor == o.m_visitedLinkBorderLeftColor |
200 && m_visitedLinkBorderRightColor == o.m_visitedLinkBorderRightColor | 200 && m_visitedLinkBorderRightColor == o.m_visitedLinkBorderRightColor |
201 && m_visitedLinkBorderTopColor == o.m_visitedLinkBorderTopColor | 201 && m_visitedLinkBorderTopColor == o.m_visitedLinkBorderTopColor |
202 && m_visitedLinkBorderBottomColor == o.m_visitedLinkBorderBottomColor | 202 && m_visitedLinkBorderBottomColor == o.m_visitedLinkBorderBottomColor |
203 && m_order == o.m_order | 203 && m_order == o.m_order |
204 && m_objectPosition == o.m_objectPosition | 204 && m_objectPosition == o.m_objectPosition |
| 205 && m_callbackSelectors == o.m_callbackSelectors |
205 && m_flowThread == o.m_flowThread | 206 && m_flowThread == o.m_flowThread |
206 && m_regionThread == o.m_regionThread | 207 && m_regionThread == o.m_regionThread |
207 && m_regionFragment == o.m_regionFragment | 208 && m_regionFragment == o.m_regionFragment |
208 && m_regionBreakAfter == o.m_regionBreakAfter | 209 && m_regionBreakAfter == o.m_regionBreakAfter |
209 && m_regionBreakBefore == o.m_regionBreakBefore | 210 && m_regionBreakBefore == o.m_regionBreakBefore |
210 && m_regionBreakInside == o.m_regionBreakInside | 211 && m_regionBreakInside == o.m_regionBreakInside |
211 && m_pageSizeType == o.m_pageSizeType | 212 && m_pageSizeType == o.m_pageSizeType |
212 && m_transformStyle3D == o.m_transformStyle3D | 213 && m_transformStyle3D == o.m_transformStyle3D |
213 && m_backfaceVisibility == o.m_backfaceVisibility | 214 && m_backfaceVisibility == o.m_backfaceVisibility |
214 && m_alignContent == o.m_alignContent | 215 && m_alignContent == o.m_alignContent |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 return false; | 294 return false; |
294 return true; | 295 return true; |
295 } | 296 } |
296 | 297 |
297 bool StyleRareNonInheritedData::hasFilters() const | 298 bool StyleRareNonInheritedData::hasFilters() const |
298 { | 299 { |
299 return m_filter.get() && !m_filter->m_operations.isEmpty(); | 300 return m_filter.get() && !m_filter->m_operations.isEmpty(); |
300 } | 301 } |
301 | 302 |
302 } // namespace WebCore | 303 } // namespace WebCore |
OLD | NEW |