| Index: third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.cpp b/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.cpp
|
| index 6f65bbf4d6ce4070f5724dd33c4de558128707b2..30293ef8d8cef32cf8920b9e4be666f4cb54c8f5 100644
|
| --- a/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.cpp
|
| @@ -203,8 +203,9 @@ void LengthListPropertyFunctions::setLengthList(CSSPropertyID property,
|
| switch (property) {
|
| case CSSPropertyStrokeDasharray:
|
| style.setStrokeDashArray(
|
| - lengthList.isEmpty() ? nullptr : RefVector<Length>::create(
|
| - std::move(lengthList)));
|
| + lengthList.isEmpty()
|
| + ? nullptr
|
| + : RefVector<Length>::create(std::move(lengthList)));
|
| return;
|
|
|
| case CSSPropertyObjectPosition:
|
|
|