Changeset 19241 for S60/trunk/WebCore
- Timestamp:
- 01/29/07 18:11:36 (2 years ago)
- Location:
- S60/trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
khtml/ecma/kjs_window.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
S60/trunk/WebCore/ChangeLog
r19198 r19241 1 2007-01-29 bujtas <zbujtas@gmail.com> 2 3 Reviewed by zalan bujtas 4 DESC: 5 http://bugs.webkit.org/show_bug.cgi?id=12422 6 jscript->schedule action->turn off jscript->action timeouts->crash. fix: check if the proxy is available in ScheduledAction::execute() 7 8 * khtml/ecma/kjs_window.cpp: 9 (ScheduledAction::execute): 10 1 11 2007-01-26 bujtas <zbujtas@gmail.com> 2 12 -
S60/trunk/WebCore/khtml/ecma/kjs_window.cpp
r18056 r19241 2164 2164 void ScheduledAction::execute(Window *window) 2165 2165 { 2166 if (!KJSProxy::proxy(window->m_part)) 2167 return; 2168 2166 2169 ScriptInterpreter *interpreter = static_cast<ScriptInterpreter *>(KJSProxy::proxy(window->m_part)->interpreter()); 2167 2170