Changeset 31292 in webkit
- Timestamp:
- Mar 25, 2008, 3:17:45 PM (17 years ago)
- Location:
- trunk/WebKit/mac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebKit/mac/ChangeLog
r31291 r31292 1 2008-03-25 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17933 6 Reopen All Windows From Last Session causes crash 7 8 * WebView/WebHTMLView.mm: 9 (-[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:]): Added null 10 check. 11 1 12 2008-03-25 Brady Eidson <beidson@apple.com> 2 13 -
trunk/WebKit/mac/WebView/WebHTMLView.mm
r31274 r31292 2703 2703 2704 2704 Frame* coreFrame = core([self _frame]); 2705 if (!coreFrame) { 2706 _private->needsLayout = NO; 2707 return; 2708 } 2709 2705 2710 if (minPageWidth > 0.0) 2706 2711 coreFrame->forceLayoutWithPageWidthRange(minPageWidth, maxPageWidth, adjustViewSize);
Note:
See TracChangeset
for help on using the changeset viewer.