Changeset 142807 in webkit


Ignore:
Timestamp:
Feb 13, 2013 2:54:11 PM (11 years ago)
Author:
abarth@webkit.org
Message:

Remove bogus ASSERT in WebFrameProxy::didStartProvisionalLoad
https://bugs.webkit.org/show_bug.cgi?id=109733

Reviewed by Sam Weinig.

After http://trac.webkit.org/changeset/142555, this ASSERT is
triggering on these tests:

fast/dom/window-load-crash.html
fast/frames/seamless/seamless-hyperlink-named.html
fast/frames/seamless/seamless-hyperlink.html

The ASSERT appears to be bogus. This patch removes it.

  • UIProcess/WebFrameProxy.cpp:

(WebKit::WebFrameProxy::didStartProvisionalLoad):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r142806 r142807  
     12013-02-13  Adam Barth  <abarth@webkit.org>
     2
     3        Remove bogus ASSERT in WebFrameProxy::didStartProvisionalLoad
     4        https://bugs.webkit.org/show_bug.cgi?id=109733
     5
     6        Reviewed by Sam Weinig.
     7
     8        After http://trac.webkit.org/changeset/142555, this ASSERT is
     9        triggering on these tests:
     10
     11        fast/dom/window-load-crash.html
     12        fast/frames/seamless/seamless-hyperlink-named.html
     13        fast/frames/seamless/seamless-hyperlink.html
     14
     15        The ASSERT appears to be bogus. This patch removes it.
     16
     17        * UIProcess/WebFrameProxy.cpp:
     18        (WebKit::WebFrameProxy::didStartProvisionalLoad):
     19
    1202013-02-13  Sam Weinig  <sam@webkit.org>
    221
  • trunk/Source/WebKit2/UIProcess/WebFrameProxy.cpp

    r141708 r142807  
    130130void WebFrameProxy::didStartProvisionalLoad(const String& url)
    131131{
    132     ASSERT(m_loadState == LoadStateFinished);
    133132    ASSERT(m_provisionalURL.isEmpty());
    134133    m_loadState = LoadStateProvisional;
Note: See TracChangeset for help on using the changeset viewer.