|
Lines 42-47
StyleRareNonInheritedData::StyleRareNonInheritedData()
a/WebCore/rendering/style/StyleRareNonInheritedData.cpp_sec1
|
| 42 |
, matchNearestMailBlockquoteColor(RenderStyle::initialMatchNearestMailBlockquoteColor()) |
42 |
, matchNearestMailBlockquoteColor(RenderStyle::initialMatchNearestMailBlockquoteColor()) |
| 43 |
, m_appearance(RenderStyle::initialAppearance()) |
43 |
, m_appearance(RenderStyle::initialAppearance()) |
| 44 |
, m_borderFit(RenderStyle::initialBorderFit()) |
44 |
, m_borderFit(RenderStyle::initialBorderFit()) |
|
|
45 |
#if USE(ACCELERATED_COMPOSITING) |
| 46 |
, m_isTransformAnimating(false) |
| 47 |
, m_isOpacityAnimating(false) |
| 48 |
#endif |
| 45 |
, m_boxShadow(0) |
49 |
, m_boxShadow(0) |
| 46 |
, m_animations(0) |
50 |
, m_animations(0) |
| 47 |
, m_transitions(0) |
51 |
, m_transitions(0) |
|
Lines 69-74
StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
a/WebCore/rendering/style/StyleRareNonInheritedData.cpp_sec2
|
| 69 |
, matchNearestMailBlockquoteColor(o.matchNearestMailBlockquoteColor) |
73 |
, matchNearestMailBlockquoteColor(o.matchNearestMailBlockquoteColor) |
| 70 |
, m_appearance(o.m_appearance) |
74 |
, m_appearance(o.m_appearance) |
| 71 |
, m_borderFit(o.m_borderFit) |
75 |
, m_borderFit(o.m_borderFit) |
|
|
76 |
#if USE(ACCELERATED_COMPOSITING) |
| 77 |
, m_isTransformAnimating(o.m_isTransformAnimating) |
| 78 |
, m_isOpacityAnimating(o.m_isOpacityAnimating) |
| 79 |
#endif |
| 72 |
, m_boxShadow(o.m_boxShadow ? new ShadowData(*o.m_boxShadow) : 0) |
80 |
, m_boxShadow(o.m_boxShadow ? new ShadowData(*o.m_boxShadow) : 0) |
| 73 |
, m_boxReflect(o.m_boxReflect) |
81 |
, m_boxReflect(o.m_boxReflect) |
| 74 |
, m_animations(o.m_animations ? new AnimationList(*o.m_animations) : 0) |
82 |
, m_animations(o.m_animations ? new AnimationList(*o.m_animations) : 0) |
|
Lines 104-113
bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
a/WebCore/rendering/style/StyleRareNonInheritedData.cpp_sec3
|
| 104 |
&& m_dashboardRegions == o.m_dashboardRegions |
112 |
&& m_dashboardRegions == o.m_dashboardRegions |
| 105 |
#endif |
113 |
#endif |
| 106 |
&& opacity == o.opacity |
114 |
&& opacity == o.opacity |
|
|
115 |
#if USE(ACCELERATED_COMPOSITING) |
| 116 |
&& !m_isOpacityAnimating && !o.m_isOpacityAnimating |
| 117 |
#endif |
| 107 |
&& flexibleBox == o.flexibleBox |
118 |
&& flexibleBox == o.flexibleBox |
| 108 |
&& marquee == o.marquee |
119 |
&& marquee == o.marquee |
| 109 |
&& m_multiCol == o.m_multiCol |
120 |
&& m_multiCol == o.m_multiCol |
| 110 |
&& m_transform == o.m_transform |
121 |
&& m_transform == o.m_transform |
|
|
122 |
#if USE(ACCELERATED_COMPOSITING) |
| 123 |
&& !m_isTransformAnimating && !o.m_isTransformAnimating |
| 124 |
#endif |
| 111 |
&& contentDataEquivalent(o) |
125 |
&& contentDataEquivalent(o) |
| 112 |
&& m_counterDirectives == o.m_counterDirectives |
126 |
&& m_counterDirectives == o.m_counterDirectives |
| 113 |
&& userDrag == o.userDrag |
127 |
&& userDrag == o.userDrag |