ChangeLog

 12007-01-03 Brady Eidson <[email protected]>
 2
 3 Reviewed by Mark Rowe
 4
 5 Fixes http://bugs.webkit.org/show_bug.cgi?id=12089
 6
 7 * loader/FrameLoader.cpp:
 8 (WebCore::FrameLoader::updateHistoryForCommit): Null check the documentLoader
 9
1102007-01-03 David Hyatt <[email protected]>
211
312 Relax the display type restriction a little bit for generated content inside
18566

loader/FrameLoader.cpp

30713071#endif
30723072 FrameLoadType type = loadType();
30733073 if (isBackForwardLoadType(type) ||
3074  (type == FrameLoadTypeReload && !documentLoader()->unreachableURL().isEmpty())) {
 3074 (type == FrameLoadTypeReload && documentLoader() && !documentLoader()->unreachableURL().isEmpty())) {
30753075 // Once committed, we want to use current item for saving DocState, and
30763076 // the provisional item for restoring state.
30773077 // Note previousItem must be set before we close the URL, which will
18566