Reviewed by Anders
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@30726
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2008-03-03 Oliver Hunt <oliver@apple.com>
+
+ Reviewed by Anders.
+
+ Make ForInNode check for the timeout interrupt
+
+ * kjs/nodes.cpp:
+ (KJS::ForInNode::execute):
+
2008-03-02 Brent Fulgham <bfulgham@gmail.com>
Reviewed by Alp Toker.
exec->popIteration();
if (statementValue)
value = statementValue;
+
+ if (exec->dynamicGlobalObject()->timedOut())
+ return exec->setInterruptedCompletion();
if (exec->completionType() != Normal) {
if (exec->completionType() == Continue && m_labelStack.contains(exec->breakOrContinueTarget()))