| Index: third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| index a12aab2d47b7912d099e0aa5de5e34a604fa5423..0183e8be470f0b22ee584ace93b8a61f9dc0fcb0 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
|
| @@ -112,81 +112,6 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| tab_size_(ComputedStyle::InitialTabSize()),
|
| text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {}
|
|
|
| -StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| - : RefCounted<StyleRareInheritedData>(),
|
| - list_style_image_(o.list_style_image_),
|
| - text_stroke_color_(o.text_stroke_color_),
|
| - text_stroke_width_(o.text_stroke_width_),
|
| - text_fill_color_(o.text_fill_color_),
|
| - text_emphasis_color_(o.text_emphasis_color_),
|
| - caret_color_(o.caret_color_),
|
| - visited_link_text_stroke_color_(o.visited_link_text_stroke_color_),
|
| - visited_link_text_fill_color_(o.visited_link_text_fill_color_),
|
| - visited_link_text_emphasis_color_(o.visited_link_text_emphasis_color_),
|
| - visited_link_caret_color_(o.visited_link_caret_color_),
|
| - text_shadow_(o.text_shadow_),
|
| - highlight_(o.highlight_),
|
| - cursor_data_(o.cursor_data_),
|
| - indent_(o.indent_),
|
| - effective_zoom_(o.effective_zoom_),
|
| - widows_(o.widows_),
|
| - orphans_(o.orphans_),
|
| - text_stroke_color_is_current_color_(
|
| - o.text_stroke_color_is_current_color_),
|
| - text_fill_color_is_current_color_(o.text_fill_color_is_current_color_),
|
| - text_emphasis_color_is_current_color_(
|
| - o.text_emphasis_color_is_current_color_),
|
| - caret_color_is_current_color_(o.caret_color_is_current_color_),
|
| - caret_color_is_auto_(o.caret_color_is_auto_),
|
| - visited_link_text_stroke_color_is_current_color_(
|
| - o.visited_link_text_stroke_color_is_current_color_),
|
| - visited_link_text_fill_color_is_current_color_(
|
| - o.visited_link_text_fill_color_is_current_color_),
|
| - visited_link_text_emphasis_color_is_current_color_(
|
| - o.visited_link_text_emphasis_color_is_current_color_),
|
| - visited_link_caret_color_is_current_color_(
|
| - o.visited_link_caret_color_is_current_color_),
|
| - visited_link_caret_color_is_auto_(o.visited_link_caret_color_is_auto_),
|
| - text_security_(o.text_security_),
|
| - user_modify_(o.user_modify_),
|
| - word_break_(o.word_break_),
|
| - overflow_wrap_(o.overflow_wrap_),
|
| - line_break_(o.line_break_),
|
| - user_select_(o.user_select_),
|
| - speak_(o.speak_),
|
| - hyphens_(o.hyphens_),
|
| - text_emphasis_fill_(o.text_emphasis_fill_),
|
| - text_emphasis_mark_(o.text_emphasis_mark_),
|
| - text_emphasis_position_(o.text_emphasis_position_),
|
| - text_align_last_(o.text_align_last_),
|
| - text_justify_(o.text_justify_),
|
| - text_orientation_(o.text_orientation_),
|
| - text_combine_(o.text_combine_),
|
| - text_indent_line_(o.text_indent_line_),
|
| - text_indent_type_(o.text_indent_type_),
|
| - image_rendering_(o.image_rendering_),
|
| - text_underline_position_(o.text_underline_position_),
|
| - text_decoration_skip_(o.text_decoration_skip_),
|
| - ruby_position_(o.ruby_position_),
|
| - subtree_will_change_contents_(o.subtree_will_change_contents_),
|
| - self_or_ancestor_has_dir_auto_attribute_(
|
| - o.self_or_ancestor_has_dir_auto_attribute_),
|
| - respect_image_orientation_(o.respect_image_orientation_),
|
| - subtree_is_sticky_(o.subtree_is_sticky_),
|
| - hyphenation_string_(o.hyphenation_string_),
|
| - hyphenation_limit_before_(o.hyphenation_limit_before_),
|
| - hyphenation_limit_after_(o.hyphenation_limit_after_),
|
| - hyphenation_limit_lines_(o.hyphenation_limit_lines_),
|
| - line_height_step_(o.line_height_step_),
|
| - text_emphasis_custom_mark_(o.text_emphasis_custom_mark_),
|
| - tap_highlight_color_(o.tap_highlight_color_),
|
| - applied_text_decorations_(o.applied_text_decorations_),
|
| - tab_size_(o.tab_size_),
|
| - variables_(o.variables_),
|
| - text_size_adjust_(o.text_size_adjust_) {}
|
| -
|
| -StyleRareInheritedData::~StyleRareInheritedData() {}
|
| -
|
| bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const {
|
| return text_stroke_color_ == o.text_stroke_color_ &&
|
| text_stroke_width_ == o.text_stroke_width_ &&
|
|
|