| 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, 2009, 2010 Apple Inc. All rights | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 4 * reserved. | 4 * reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 text_combine_(ComputedStyle::InitialTextCombine()), | 95 text_combine_(ComputedStyle::InitialTextCombine()), |
| 96 text_indent_line_(ComputedStyle::InitialTextIndentLine()), | 96 text_indent_line_(ComputedStyle::InitialTextIndentLine()), |
| 97 text_indent_type_(ComputedStyle::InitialTextIndentLine()), | 97 text_indent_type_(ComputedStyle::InitialTextIndentLine()), |
| 98 image_rendering_(ComputedStyle::InitialImageRendering()), | 98 image_rendering_(ComputedStyle::InitialImageRendering()), |
| 99 text_underline_position_(ComputedStyle::InitialTextUnderlinePosition()), | 99 text_underline_position_(ComputedStyle::InitialTextUnderlinePosition()), |
| 100 text_decoration_skip_(ComputedStyle::InitialTextDecorationSkip()), | 100 text_decoration_skip_(ComputedStyle::InitialTextDecorationSkip()), |
| 101 ruby_position_(ComputedStyle::InitialRubyPosition()), | 101 ruby_position_(ComputedStyle::InitialRubyPosition()), |
| 102 subtree_will_change_contents_(false), | 102 subtree_will_change_contents_(false), |
| 103 self_or_ancestor_has_dir_auto_attribute_(false), | 103 self_or_ancestor_has_dir_auto_attribute_(false), |
| 104 respect_image_orientation_(false), | 104 respect_image_orientation_(false), |
| 105 is_in_sticky_subtree_(false), |
| 105 hyphenation_limit_before(-1), | 106 hyphenation_limit_before(-1), |
| 106 hyphenation_limit_after(-1), | 107 hyphenation_limit_after(-1), |
| 107 hyphenation_limit_lines(-1), | 108 hyphenation_limit_lines(-1), |
| 108 line_height_step_(0), | 109 line_height_step_(0), |
| 109 tap_highlight_color(ComputedStyle::InitialTapHighlightColor()), | 110 tap_highlight_color(ComputedStyle::InitialTapHighlightColor()), |
| 110 tab_size_(ComputedStyle::InitialTabSize()), | 111 tab_size_(ComputedStyle::InitialTabSize()), |
| 111 text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {} | 112 text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {} |
| 112 | 113 |
| 113 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o) | 114 StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o) |
| 114 : RefCounted<StyleRareInheritedData>(), | 115 : RefCounted<StyleRareInheritedData>(), |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 text_indent_line_(o.text_indent_line_), | 164 text_indent_line_(o.text_indent_line_), |
| 164 text_indent_type_(o.text_indent_type_), | 165 text_indent_type_(o.text_indent_type_), |
| 165 image_rendering_(o.image_rendering_), | 166 image_rendering_(o.image_rendering_), |
| 166 text_underline_position_(o.text_underline_position_), | 167 text_underline_position_(o.text_underline_position_), |
| 167 text_decoration_skip_(o.text_decoration_skip_), | 168 text_decoration_skip_(o.text_decoration_skip_), |
| 168 ruby_position_(o.ruby_position_), | 169 ruby_position_(o.ruby_position_), |
| 169 subtree_will_change_contents_(o.subtree_will_change_contents_), | 170 subtree_will_change_contents_(o.subtree_will_change_contents_), |
| 170 self_or_ancestor_has_dir_auto_attribute_( | 171 self_or_ancestor_has_dir_auto_attribute_( |
| 171 o.self_or_ancestor_has_dir_auto_attribute_), | 172 o.self_or_ancestor_has_dir_auto_attribute_), |
| 172 respect_image_orientation_(o.respect_image_orientation_), | 173 respect_image_orientation_(o.respect_image_orientation_), |
| 174 is_in_sticky_subtree_(o.is_in_sticky_subtree_), |
| 173 hyphenation_string(o.hyphenation_string), | 175 hyphenation_string(o.hyphenation_string), |
| 174 hyphenation_limit_before(o.hyphenation_limit_before), | 176 hyphenation_limit_before(o.hyphenation_limit_before), |
| 175 hyphenation_limit_after(o.hyphenation_limit_after), | 177 hyphenation_limit_after(o.hyphenation_limit_after), |
| 176 hyphenation_limit_lines(o.hyphenation_limit_lines), | 178 hyphenation_limit_lines(o.hyphenation_limit_lines), |
| 177 line_height_step_(o.line_height_step_), | 179 line_height_step_(o.line_height_step_), |
| 178 text_emphasis_custom_mark(o.text_emphasis_custom_mark), | 180 text_emphasis_custom_mark(o.text_emphasis_custom_mark), |
| 179 tap_highlight_color(o.tap_highlight_color), | 181 tap_highlight_color(o.tap_highlight_color), |
| 180 applied_text_decorations(o.applied_text_decorations), | 182 applied_text_decorations(o.applied_text_decorations), |
| 181 tab_size_(o.tab_size_), | 183 tab_size_(o.tab_size_), |
| 182 variables(o.variables), | 184 variables(o.variables), |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 text_align_last_ == o.text_align_last_ && | 233 text_align_last_ == o.text_align_last_ && |
| 232 text_justify_ == o.text_justify_ && | 234 text_justify_ == o.text_justify_ && |
| 233 text_orientation_ == o.text_orientation_ && | 235 text_orientation_ == o.text_orientation_ && |
| 234 text_combine_ == o.text_combine_ && | 236 text_combine_ == o.text_combine_ && |
| 235 text_indent_line_ == o.text_indent_line_ && | 237 text_indent_line_ == o.text_indent_line_ && |
| 236 text_indent_type_ == o.text_indent_type_ && | 238 text_indent_type_ == o.text_indent_type_ && |
| 237 subtree_will_change_contents_ == o.subtree_will_change_contents_ && | 239 subtree_will_change_contents_ == o.subtree_will_change_contents_ && |
| 238 self_or_ancestor_has_dir_auto_attribute_ == | 240 self_or_ancestor_has_dir_auto_attribute_ == |
| 239 o.self_or_ancestor_has_dir_auto_attribute_ && | 241 o.self_or_ancestor_has_dir_auto_attribute_ && |
| 240 respect_image_orientation_ == o.respect_image_orientation_ && | 242 respect_image_orientation_ == o.respect_image_orientation_ && |
| 243 is_in_sticky_subtree_ == o.is_in_sticky_subtree_ && |
| 241 hyphenation_string == o.hyphenation_string && | 244 hyphenation_string == o.hyphenation_string && |
| 242 line_height_step_ == o.line_height_step_ && | 245 line_height_step_ == o.line_height_step_ && |
| 243 text_emphasis_custom_mark == o.text_emphasis_custom_mark && | 246 text_emphasis_custom_mark == o.text_emphasis_custom_mark && |
| 244 QuotesDataEquivalent(o) && tab_size_ == o.tab_size_ && | 247 QuotesDataEquivalent(o) && tab_size_ == o.tab_size_ && |
| 245 image_rendering_ == o.image_rendering_ && | 248 image_rendering_ == o.image_rendering_ && |
| 246 text_underline_position_ == o.text_underline_position_ && | 249 text_underline_position_ == o.text_underline_position_ && |
| 247 text_decoration_skip_ == o.text_decoration_skip_ && | 250 text_decoration_skip_ == o.text_decoration_skip_ && |
| 248 ruby_position_ == o.ruby_position_ && | 251 ruby_position_ == o.ruby_position_ && |
| 249 DataEquivalent(list_style_image.Get(), o.list_style_image.Get()) && | 252 DataEquivalent(list_style_image.Get(), o.list_style_image.Get()) && |
| 250 DataEquivalent(applied_text_decorations, o.applied_text_decorations) && | 253 DataEquivalent(applied_text_decorations, o.applied_text_decorations) && |
| 251 DataEquivalent(variables, o.variables) && | 254 DataEquivalent(variables, o.variables) && |
| 252 text_size_adjust_ == o.text_size_adjust_; | 255 text_size_adjust_ == o.text_size_adjust_; |
| 253 } | 256 } |
| 254 | 257 |
| 255 bool StyleRareInheritedData::ShadowDataEquivalent( | 258 bool StyleRareInheritedData::ShadowDataEquivalent( |
| 256 const StyleRareInheritedData& o) const { | 259 const StyleRareInheritedData& o) const { |
| 257 return DataEquivalent(text_shadow.Get(), o.text_shadow.Get()); | 260 return DataEquivalent(text_shadow.Get(), o.text_shadow.Get()); |
| 258 } | 261 } |
| 259 | 262 |
| 260 bool StyleRareInheritedData::QuotesDataEquivalent( | 263 bool StyleRareInheritedData::QuotesDataEquivalent( |
| 261 const StyleRareInheritedData& o) const { | 264 const StyleRareInheritedData& o) const { |
| 262 return DataEquivalent(quotes, o.quotes); | 265 return DataEquivalent(quotes, o.quotes); |
| 263 } | 266 } |
| 264 | 267 |
| 265 } // namespace blink | 268 } // namespace blink |
| OLD | NEW |