ChangeLog
1
2007-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
1
10
2007-01-03 David Hyatt <
[email protected]
>
2
11
3
12
Relax the display type restriction a little bit for generated content inside
18566
loader/FrameLoader.cpp
3071
3071
#endif
3072
3072
FrameLoadType type = loadType();
3073
3073
if (isBackForwardLoadType(type) ||
3074
(type == FrameLoadTypeReload && !documentLoader()->unreachableURL().isEmpty())) {
3074
(type == FrameLoadTypeReload
&& documentLoader()
&& !documentLoader()->unreachableURL().isEmpty())) {
3075
3075
// Once committed, we want to use current item for saving DocState, and
3076
3076
// the provisional item for restoring state.
3077
3077
// Note previousItem must be set before we close the URL, which will
18566