| Index: third_party/WebKit/Source/core/svg/SVGPathData.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathData.h b/third_party/WebKit/Source/core/svg/SVGPathData.h
|
| index a45f78b74f9e201a8afbb53876c2a5db312d3251..abc1dbed293ff0ecd7a1f1974b828d38bbf75904 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathData.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathData.h
|
| @@ -56,7 +56,8 @@ static inline SVGPathSegType toAbsolutePathSegType(const SVGPathSegType type) {
|
| }
|
|
|
| static inline bool isAbsolutePathSegType(const SVGPathSegType type) {
|
| - // For commands with an ordinal >= PathSegMoveToAbs, and odd number => relative command.
|
| + // For commands with an ordinal >= PathSegMoveToAbs, and odd number =>
|
| + // relative command.
|
| return type < PathSegMoveToAbs || type % 2 == 0;
|
| }
|
|
|
|
|