| Index: Source/core/dom/ScriptRunner.cpp
 | 
| diff --git a/Source/core/dom/ScriptRunner.cpp b/Source/core/dom/ScriptRunner.cpp
 | 
| index 2fbf959c598204b7deecc207b178a359586096dc..d33ea6ee52dedd7a55b82d1fd94e0ef3c94c0a5a 100644
 | 
| --- a/Source/core/dom/ScriptRunner.cpp
 | 
| +++ b/Source/core/dom/ScriptRunner.cpp
 | 
| @@ -81,7 +81,7 @@ void ScriptRunner::suspend()
 | 
|  void ScriptRunner::resume()
 | 
|  {
 | 
|      if (hasPendingScripts())
 | 
| -        m_timer.startOneShot(0);
 | 
| +        m_timer.startOneShot(0, FROM_HERE);
 | 
|  }
 | 
|  
 | 
|  void ScriptRunner::notifyScriptReady(ScriptLoader* scriptLoader, ExecutionType executionType)
 | 
| @@ -96,7 +96,7 @@ void ScriptRunner::notifyScriptReady(ScriptLoader* scriptLoader, ExecutionType e
 | 
|          ASSERT(!m_scriptsToExecuteInOrder.isEmpty());
 | 
|          break;
 | 
|      }
 | 
| -    m_timer.startOneShot(0);
 | 
| +    m_timer.startOneShot(0, FROM_HERE);
 | 
|  }
 | 
|  
 | 
|  void ScriptRunner::notifyScriptLoadError(ScriptLoader* scriptLoader, ExecutionType executionType)
 | 
| 
 |