| Index: third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp b/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
|
| index 7431a42a3622ecbf65ac2c96da3505e62305b4ec..3531e612cc4b3125b4ea66ae23b1fb93d7f7b16d 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMWindowTimers.cpp
|
| @@ -86,7 +86,7 @@ int setTimeout(ScriptState* scriptState, EventTarget& eventTarget, const String&
|
| if (!isAllowed(scriptState, executionContext, true))
|
| return 0;
|
| // Don't allow setting timeouts to run empty functions. Was historically a
|
| - // perfomance issue.
|
| + // performance issue.
|
| if (handler.isEmpty())
|
| return 0;
|
| if (timeout >= 0 && executionContext->isDocument()) {
|
| @@ -113,7 +113,7 @@ int setInterval(ScriptState* scriptState, EventTarget& eventTarget, const String
|
| if (!isAllowed(scriptState, executionContext, true))
|
| return 0;
|
| // Don't allow setting timeouts to run empty functions. Was historically a
|
| - // perfomance issue.
|
| + // performance issue.
|
| if (handler.isEmpty())
|
| return 0;
|
| OwnPtrWillBeRawPtr<ScheduledAction> action = ScheduledAction::create(scriptState, handler);
|
|
|