| Index: third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp b/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
|
| index e986054744995c6d2fd3d2e3c0a38eb805cd473f..33a6c58b478d1cc31a16883e3f686a771af8133f 100644
|
| --- a/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
|
| @@ -30,7 +30,8 @@
|
| using namespace blink;
|
|
|
| SMILTime blink::operator*(const SMILTime& a, const SMILTime& b) {
|
| - // Equal operators have to be used instead of negation here to make NaN work as well.
|
| + // Equal operators have to be used instead of negation here to make NaN work
|
| + // as well.
|
| if (a.value() == 0 || b.value() == 0)
|
| return SMILTime(0);
|
| return a.value() * b.value();
|
|
|