| Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| index ff44903c283b81cb50276ab5b1110e3e753874ae..473e17f119e3699e616d60b6dcb54ea83f2ee7fd 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| @@ -159,8 +159,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(
|
| : nullptr),
|
| animations_(o.animations_ ? CSSAnimationData::Create(*o.animations_)
|
| : nullptr),
|
| - transitions_(o.transitions_ ? CSSTransitionData::Create(*o.transitions_)
|
| - : nullptr),
|
| + transitions_(o.transitions_ ? o.transitions_->Clone() : nullptr),
|
| box_shadow_(o.box_shadow_),
|
| box_reflect_(o.box_reflect_),
|
| shape_outside_(o.shape_outside_),
|
|
|