Changeset 29005 in webkit
- Timestamp:
- Dec 27, 2007, 2:20:18 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r28997 r29005 1 2007-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 1 11 2007-12-26 Jan Michael Alonzo <jmalonzo@unpluggable.com> 2 12 -
trunk/JavaScriptCore/kjs/nodes.cpp
r28973 r29005 3841 3841 3842 3842 JSValue* e = expr->evaluate(exec); 3843 KJS_CHECKEXCEPTION 3843 3844 3844 3845 // For Null and Undefined, we want to make sure not to go through … … 3847 3848 return exec->setNormalCompletion(); 3848 3849 3849 KJS_CHECKEXCEPTION3850 3850 JSObject* v = e->toObject(exec); 3851 3851 PropertyNameArray propertyNames; -
trunk/LayoutTests/ChangeLog
r29004 r29005 1 2007-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 1 12 2007-12-27 Sam Weinig <sam@webkit.org> 2 13
Note:
See TracChangeset
for help on using the changeset viewer.