Changeset 15698 in webkit for trunk/JavaScriptCore/bindings/runtime_method.cpp
- Timestamp:
- Jul 29, 2006, 5:04:22 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_method.cpp
- Property allow-tabs deleted
r13821 r15698 70 70 { 71 71 if (_methodList.length() > 0) { 72 73 74 75 76 77 78 79 80 81 82 72 RuntimeObjectImp *imp; 73 74 // If thisObj is the DOM object for a plugin, get the corresponding 75 // runtime object from the DOM object. 76 if (thisObj->classInfo() != &KJS::RuntimeObjectImp::info) { 77 JSValue *runtimeObject = thisObj->get(exec, "__apple_runtime_object"); 78 imp = static_cast<RuntimeObjectImp*>(runtimeObject); 79 } 80 else { 81 imp = static_cast<RuntimeObjectImp*>(thisObj); 82 } 83 83 if (imp) { 84 84 Instance *instance = imp->getInternalInstance(); … … 107 107 return Completion(Normal, jsUndefined()); 108 108 } 109
Note:
See TracChangeset
for help on using the changeset viewer.