| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 outline_(o.outline_), | 170 outline_(o.outline_), |
| 171 text_decoration_color_(o.text_decoration_color_), | 171 text_decoration_color_(o.text_decoration_color_), |
| 172 visited_link_text_decoration_color_( | 172 visited_link_text_decoration_color_( |
| 173 o.visited_link_text_decoration_color_), | 173 o.visited_link_text_decoration_color_), |
| 174 visited_link_background_color_(o.visited_link_background_color_), | 174 visited_link_background_color_(o.visited_link_background_color_), |
| 175 visited_link_outline_color_(o.visited_link_outline_color_), | 175 visited_link_outline_color_(o.visited_link_outline_color_), |
| 176 visited_link_border_left_color_(o.visited_link_border_left_color_), | 176 visited_link_border_left_color_(o.visited_link_border_left_color_), |
| 177 visited_link_border_right_color_(o.visited_link_border_right_color_), | 177 visited_link_border_right_color_(o.visited_link_border_right_color_), |
| 178 visited_link_border_top_color_(o.visited_link_border_top_color_), | 178 visited_link_border_top_color_(o.visited_link_border_top_color_), |
| 179 visited_link_border_bottom_color_(o.visited_link_border_bottom_color_), | 179 visited_link_border_bottom_color_(o.visited_link_border_bottom_color_), |
| 180 variables_(o.variables_ ? o.variables_->Copy() : nullptr), | 180 variables_(o.variables_ ? o.variables_->Clone() : nullptr), |
| 181 align_content_(o.align_content_), | 181 align_content_(o.align_content_), |
| 182 align_items_(o.align_items_), | 182 align_items_(o.align_items_), |
| 183 align_self_(o.align_self_), | 183 align_self_(o.align_self_), |
| 184 justify_content_(o.justify_content_), | 184 justify_content_(o.justify_content_), |
| 185 justify_items_(o.justify_items_), | 185 justify_items_(o.justify_items_), |
| 186 justify_self_(o.justify_self_), | 186 justify_self_(o.justify_self_), |
| 187 page_size_type_(o.page_size_type_), | 187 page_size_type_(o.page_size_type_), |
| 188 transform_style3d_(o.transform_style3d_), | 188 transform_style3d_(o.transform_style3d_), |
| 189 backface_visibility_(o.backface_visibility_), | 189 backface_visibility_(o.backface_visibility_), |
| 190 user_drag(o.user_drag), | 190 user_drag(o.user_drag), |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 const StyleRareNonInheritedData& o) const { | 348 const StyleRareNonInheritedData& o) const { |
| 349 return DataEquivalent(shape_outside_, o.shape_outside_); | 349 return DataEquivalent(shape_outside_, o.shape_outside_); |
| 350 } | 350 } |
| 351 | 351 |
| 352 bool StyleRareNonInheritedData::ClipPathDataEquivalent( | 352 bool StyleRareNonInheritedData::ClipPathDataEquivalent( |
| 353 const StyleRareNonInheritedData& o) const { | 353 const StyleRareNonInheritedData& o) const { |
| 354 return DataEquivalent(clip_path_, o.clip_path_); | 354 return DataEquivalent(clip_path_, o.clip_path_); |
| 355 } | 355 } |
| 356 | 356 |
| 357 } // namespace blink | 357 } // namespace blink |
| OLD | NEW |