Changeset 29005 in webkit


Ignore:
Timestamp:
Dec 27, 2007 2:20:18 PM (16 years ago)
Author:
eric@webkit.org
Message:

Reviewed by Sam.

ASSERT in JavaScriptCore while viewing WICD test case
http://bugs.webkit.org/show_bug.cgi?id=16626

  • kjs/nodes.cpp: (KJS::ForInNode::execute): move KJS_CHECK_EXCEPTION to proper place
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r28997 r29005  
     12007-12-27  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Sam.
     4
     5        ASSERT in JavaScriptCore while viewing WICD test case
     6        http://bugs.webkit.org/show_bug.cgi?id=16626
     7       
     8        * kjs/nodes.cpp:
     9        (KJS::ForInNode::execute): move KJS_CHECK_EXCEPTION to proper place
     10
    1112007-12-26  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
    212
  • trunk/JavaScriptCore/kjs/nodes.cpp

    r28973 r29005  
    38413841
    38423842  JSValue* e = expr->evaluate(exec);
     3843  KJS_CHECKEXCEPTION
    38433844
    38443845  // For Null and Undefined, we want to make sure not to go through
     
    38473848    return exec->setNormalCompletion();
    38483849
    3849   KJS_CHECKEXCEPTION
    38503850  JSObject* v = e->toObject(exec);
    38513851  PropertyNameArray propertyNames;
  • trunk/LayoutTests/ChangeLog

    r29004 r29005  
     12007-12-27  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Sam.
     4       
     5        ASSERT in JavaScriptCore while viewing WICD test case
     6        http://bugs.webkit.org/show_bug.cgi?id=16626
     7
     8        * fast/js/for-in-exeception-expected.txt: Added.
     9        * fast/js/for-in-exeception.html: Added.
     10        * fast/js/resources/for-in-exception.js: Added.
     11
    1122007-12-27  Sam Weinig  <sam@webkit.org>
    213
Note: See TracChangeset for help on using the changeset viewer.