Changeset 30158 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 11, 2008, 5:24:02 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r30140 r30158 1 2008-02-11 Sam Weinig <[email protected]> 2 3 Reviewed by Anders Carlsson. 4 5 Fixes for: 6 <rdar://problem/5735497> Match Firefox's cross-domain model more accurately by return the built-in version of functions even if they have been overridden 7 <rdar://problem/5735443> Crash when setting the Window objects prototype to a custom Object and then calling a method on it 8 9 - Expose the native Object.prototype.toString implementation so that it can be used for cross-domain 10 toString calling. 11 12 * JavaScriptCore.exp: 13 * kjs/object_object.cpp: 14 * kjs/object_object.h: 15 1 16 2008-02-10 Darin Adler <[email protected]> 2 17 -
trunk/JavaScriptCore/JavaScriptCore.exp
r30034 r30158 165 165 __ZN3KJS19InternalFunctionImp4infoE 166 166 __ZN3KJS19InternalFunctionImpC2EPNS_17FunctionPrototypeERKNS_10IdentifierE 167 __ZN3KJS23objectProtoFuncToStringEPNS_9ExecStateEPNS_8JSObjectERKNS_4ListE 167 168 __ZN3KJS4List15expandAndAppendEPNS_7JSValueE 168 169 __ZN3KJS4List7markSetEv -
trunk/JavaScriptCore/kjs/object_object.cpp
r29817 r30158 40 40 static JSValue* objectProtoFuncPropertyIsEnumerable(ExecState*, JSObject*, const List&); 41 41 static JSValue* objectProtoFuncToLocaleString(ExecState*, JSObject*, const List&); 42 static JSValue* objectProtoFuncToString(ExecState*, JSObject*, const List&);43 42 44 43 ObjectPrototype::ObjectPrototype(ExecState* exec, FunctionPrototype* functionPrototype) -
trunk/JavaScriptCore/kjs/object_object.h
r29588 r30158 37 37 }; 38 38 39 JSValue* objectProtoFuncToString(ExecState*, JSObject*, const List&); 40 39 41 /** 40 42 * @internal
Note:
See TracChangeset
for help on using the changeset viewer.