Changeset 24516 in webkit
- Timestamp:
- Jul 22, 2007, 12:43:43 PM (18 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r24514 r24516 1 2007-07-18 Darin Adler <darin@apple.com> 2 3 Reviewed by Adam. 4 5 - fix <rdar://problem/5350604> REGRESSION: Crash in inspector controller code after 6 clicking back button in test application (13250) 7 8 * page/InspectorController.cpp: (WebCore::InspectorController::addScriptResource): 9 Replace an assertion that was firing with some code that at least doesn't immediately crash. 10 1 11 2007-07-22 Darin Adler <darin@apple.com> 2 12 -
trunk/WebCore/page/InspectorController.cpp
r24422 r24516 727 727 { 728 728 ASSERT_ARG(resource, resource); 729 ASSERT(!resource->scriptObject); 729 730 // This happens for pages loaded from the back/forward cache. 731 if (resource->scriptObject) 732 return resource->scriptObject; 730 733 731 734 ASSERT(m_scriptContext);
Note:
See TracChangeset
for help on using the changeset viewer.