Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: Source/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 669553002: Remove <marquee> leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o) 98 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o)
99 : RefCounted<StyleRareNonInheritedData>() 99 : RefCounted<StyleRareNonInheritedData>()
100 , opacity(o.opacity) 100 , opacity(o.opacity)
101 , m_perspective(o.m_perspective) 101 , m_perspective(o.m_perspective)
102 , m_perspectiveOrigin(o.m_perspectiveOrigin) 102 , m_perspectiveOrigin(o.m_perspectiveOrigin)
103 , lineClamp(o.lineClamp) 103 , lineClamp(o.lineClamp)
104 , m_draggableRegionMode(o.m_draggableRegionMode) 104 , m_draggableRegionMode(o.m_draggableRegionMode)
105 , m_deprecatedFlexibleBox(o.m_deprecatedFlexibleBox) 105 , m_deprecatedFlexibleBox(o.m_deprecatedFlexibleBox)
106 , m_flexibleBox(o.m_flexibleBox) 106 , m_flexibleBox(o.m_flexibleBox)
107 , m_marquee(o.m_marquee)
108 , m_multiCol(o.m_multiCol) 107 , m_multiCol(o.m_multiCol)
109 , m_transform(o.m_transform) 108 , m_transform(o.m_transform)
110 , m_willChange(o.m_willChange) 109 , m_willChange(o.m_willChange)
111 , m_filter(o.m_filter) 110 , m_filter(o.m_filter)
112 , m_grid(o.m_grid) 111 , m_grid(o.m_grid)
113 , m_gridItem(o.m_gridItem) 112 , m_gridItem(o.m_gridItem)
114 , m_content(o.m_content ? o.m_content->clone() : nullptr) 113 , m_content(o.m_content ? o.m_content->clone() : nullptr)
115 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr) 114 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr)
116 , m_boxShadow(o.m_boxShadow) 115 , m_boxShadow(o.m_boxShadow)
117 , m_boxReflect(o.m_boxReflect) 116 , m_boxReflect(o.m_boxReflect)
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 182
184 bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c onst 183 bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c onst
185 { 184 {
186 return opacity == o.opacity 185 return opacity == o.opacity
187 && m_perspective == o.m_perspective 186 && m_perspective == o.m_perspective
188 && m_perspectiveOrigin == o.m_perspectiveOrigin 187 && m_perspectiveOrigin == o.m_perspectiveOrigin
189 && lineClamp == o.lineClamp 188 && lineClamp == o.lineClamp
190 && m_draggableRegionMode == o.m_draggableRegionMode 189 && m_draggableRegionMode == o.m_draggableRegionMode
191 && m_deprecatedFlexibleBox == o.m_deprecatedFlexibleBox 190 && m_deprecatedFlexibleBox == o.m_deprecatedFlexibleBox
192 && m_flexibleBox == o.m_flexibleBox 191 && m_flexibleBox == o.m_flexibleBox
193 && m_marquee == o.m_marquee
194 && m_multiCol == o.m_multiCol 192 && m_multiCol == o.m_multiCol
195 && m_transform == o.m_transform 193 && m_transform == o.m_transform
196 && m_willChange == o.m_willChange 194 && m_willChange == o.m_willChange
197 && m_filter == o.m_filter 195 && m_filter == o.m_filter
198 && m_grid == o.m_grid 196 && m_grid == o.m_grid
199 && m_gridItem == o.m_gridItem 197 && m_gridItem == o.m_gridItem
200 && contentDataEquivalent(o) 198 && contentDataEquivalent(o)
201 && counterDataEquivalent(o) 199 && counterDataEquivalent(o)
202 && shadowDataEquivalent(o) 200 && shadowDataEquivalent(o)
203 && reflectionDataEquivalent(o) 201 && reflectionDataEquivalent(o)
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 return false; 300 return false;
303 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 301 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
304 } 302 }
305 303
306 bool StyleRareNonInheritedData::hasFilters() const 304 bool StyleRareNonInheritedData::hasFilters() const
307 { 305 {
308 return m_filter.get() && !m_filter->m_operations.isEmpty(); 306 return m_filter.get() && !m_filter->m_operations.isEmpty();
309 } 307 }
310 308
311 } // namespace blink 309 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.h ('k') | Source/devtools/front_end/sdk/CSSMetadata.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698