Changeset 26041 in webkit


Ignore:
Timestamp:
Oct 4, 2007 1:45:12 AM (17 years ago)
Author:
lars
Message:

fix a crash in the FrameLoader that can happen under certain
conditions in the Qt port.

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r26039 r26041  
     12007-10-04  Lars Knoll  <lars@trolltech.com>
     2
     3        Reviewed by maciej.
     4
     5        fix a crash in the FrameLoader that can happen under certain
     6        conditions in the Qt port.
     7
     8        * fast/loader/iframe-crash-on-missing-image-expected.txt: Copied from LayoutTests/dom/xhtml/level2/html/HTMLIFrameElement01-expected.txt.
     9        * fast/loader/iframe-crash-on-missing-image.xhtml: Copied from LayoutTests/dom/xhtml/level2/html/HTMLIFrameElement01.xhtml.
     10
    1112007-10-04  Lars Knoll  <lars@trolltech.com>
    212
  • trunk/WebCore/ChangeLog

    r26022 r26041  
     12007-10-04  Lars Knoll  <lars@trolltech.com>
     2
     3        Reviewed by maciej.
     4
     5        fix a crash in the FrameLoader that can happen under certain
     6        conditions in the Qt port.
     7
     8        Test: fast/loader/iframe-crash-on-missing-image.xhtml
     9
     10        * loader/FrameLoader.cpp:
     11        (WebCore::FrameLoader::receivedMainResourceError):
     12
    1132007-10-03  Alp Toker  <alp@atoker.com>
    214
  • trunk/WebCore/loader/FrameLoader.cpp

    r25783 r26041  
    33413341    }
    33423342   
    3343     if (m_state == FrameStateProvisional) {
     3343    if (m_state == FrameStateProvisional && m_provisionalDocumentLoader) {
    33443344        KURL failedURL = m_provisionalDocumentLoader->originalRequestCopy().url();
    33453345        didNotOpenURL(failedURL);
Note: See TracChangeset for help on using the changeset viewer.