Changeset 160718 in webkit


Ignore:
Timestamp:
Dec 17, 2013 11:46:32 AM (10 years ago)
Author:
mitz@apple.com
Message:

Fixed an assertion failure seen running some mixed-content tests.
https://bugs.webkit.org/show_bug.cgi?id=125862

Reviewed by Alexey Proskuryakov.

  • UIProcess/PageLoadState.cpp:

(WebKit::PageLoadState::didDisplayOrRunInsecureContent): Removed an assertion about the URL
of the main frame when dealing with a notification that could have come from any frame.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160710 r160718  
     12013-12-17  Dan Bernstein  <mitz@apple.com>
     2
     3        Fixed an assertion failure seen running some mixed-content tests.
     4        https://bugs.webkit.org/show_bug.cgi?id=125862
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * UIProcess/PageLoadState.cpp:
     9        (WebKit::PageLoadState::didDisplayOrRunInsecureContent): Removed an assertion about the URL
     10        of the main frame when dealing with a notification that could have come from any frame.
     11
    1122013-12-17  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/Source/WebKit2/UIProcess/PageLoadState.cpp

    r160662 r160718  
    273273{
    274274    ASSERT_UNUSED(token, &token.m_pageLoadState == this);
    275     ASSERT(m_uncommittedState.url.startsWith("https:", false));
    276275
    277276    m_uncommittedState.hasInsecureContent = true;
Note: See TracChangeset for help on using the changeset viewer.