| Index: Source/core/frame/DOMTimer.cpp
|
| diff --git a/Source/core/frame/DOMTimer.cpp b/Source/core/frame/DOMTimer.cpp
|
| index 6e77e87e1455ecab143ecc0ab84bd3fdd4e47e2f..0d3af80cda998f6c3577f0684172e31768b8487d 100644
|
| --- a/Source/core/frame/DOMTimer.cpp
|
| +++ b/Source/core/frame/DOMTimer.cpp
|
| @@ -99,7 +99,7 @@
|
| if (shouldForwardUserGesture(interval, m_nestingLevel))
|
| m_userGestureToken = UserGestureIndicator::currentToken();
|
|
|
| - double intervalMilliseconds = std::max(0.0, interval * oneMillisecond);
|
| + double intervalMilliseconds = std::max(oneMillisecond, interval * oneMillisecond);
|
| if (intervalMilliseconds < minimumInterval && m_nestingLevel >= maxTimerNestingLevel)
|
| intervalMilliseconds = minimumInterval;
|
| if (singleShot)
|
|
|