| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 , m_multiCol(o.m_multiCol) | 106 , m_multiCol(o.m_multiCol) |
| 107 , m_transform(o.m_transform) | 107 , m_transform(o.m_transform) |
| 108 , m_willChange(o.m_willChange) | 108 , m_willChange(o.m_willChange) |
| 109 , m_filter(o.m_filter) | 109 , m_filter(o.m_filter) |
| 110 , m_grid(o.m_grid) | 110 , m_grid(o.m_grid) |
| 111 , m_gridItem(o.m_gridItem) | 111 , m_gridItem(o.m_gridItem) |
| 112 , m_content(o.m_content ? o.m_content->clone() : nullptr) | 112 , m_content(o.m_content ? o.m_content->clone() : nullptr) |
| 113 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives)
: nullptr) | 113 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives)
: nullptr) |
| 114 , m_boxShadow(o.m_boxShadow) | 114 , m_boxShadow(o.m_boxShadow) |
| 115 , m_boxReflect(o.m_boxReflect) | 115 , m_boxReflect(o.m_boxReflect) |
| 116 , m_animations(o.m_animations ? adoptPtr(new CSSAnimationDataList(*o.m_anima
tions)) : nullptr) | 116 , m_animations(o.m_animations ? adoptPtrWillBeNoop(new CSSAnimationDataList(
*o.m_animations)) : nullptr) |
| 117 , m_transitions(o.m_transitions ? adoptPtr(new CSSAnimationDataList(*o.m_tra
nsitions)) : nullptr) | 117 , m_transitions(o.m_transitions ? adoptPtrWillBeNoop(new CSSAnimationDataLis
t(*o.m_transitions)) : nullptr) |
| 118 , m_mask(o.m_mask) | 118 , m_mask(o.m_mask) |
| 119 , m_maskBoxImage(o.m_maskBoxImage) | 119 , m_maskBoxImage(o.m_maskBoxImage) |
| 120 , m_pageSize(o.m_pageSize) | 120 , m_pageSize(o.m_pageSize) |
| 121 , m_shapeInside(o.m_shapeInside) | 121 , m_shapeInside(o.m_shapeInside) |
| 122 , m_shapeOutside(o.m_shapeOutside) | 122 , m_shapeOutside(o.m_shapeOutside) |
| 123 , m_shapeMargin(o.m_shapeMargin) | 123 , m_shapeMargin(o.m_shapeMargin) |
| 124 , m_shapePadding(o.m_shapePadding) | 124 , m_shapePadding(o.m_shapePadding) |
| 125 , m_shapeImageThreshold(o.m_shapeImageThreshold) | 125 , m_shapeImageThreshold(o.m_shapeImageThreshold) |
| 126 , m_clipPath(o.m_clipPath) | 126 , m_clipPath(o.m_clipPath) |
| 127 , m_textDecorationColor(o.m_textDecorationColor) | 127 , m_textDecorationColor(o.m_textDecorationColor) |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 return false; | 307 return false; |
| 308 return true; | 308 return true; |
| 309 } | 309 } |
| 310 | 310 |
| 311 bool StyleRareNonInheritedData::hasFilters() const | 311 bool StyleRareNonInheritedData::hasFilters() const |
| 312 { | 312 { |
| 313 return m_filter.get() && !m_filter->m_operations.isEmpty(); | 313 return m_filter.get() && !m_filter->m_operations.isEmpty(); |
| 314 } | 314 } |
| 315 | 315 |
| 316 } // namespace WebCore | 316 } // namespace WebCore |
| OLD | NEW |