Changeset 257094 in webkit


Ignore:
Timestamp:
Feb 20, 2020 2:59:24 PM (4 years ago)
Author:
Alan Bujtas
Message:

[First paint] FrameView::loadProgressingStatusChanged should check m_firstVisuallyNonEmptyLayoutMilestoneIsPending
https://bugs.webkit.org/show_bug.cgi?id=208008
<rdar://problem/59630957>

Reviewed by Antti Koivisto.

If we haven't had a chance to issue a visually-non-empty milestone, we definitely need to check the content again when the load
is finally completed.

  • page/FrameView.cpp:

(WebCore::FrameView::loadProgressingStatusChanged):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r257090 r257094  
     12020-02-20  Zalan Bujtas  <zalan@apple.com>
     2
     3        [First paint] FrameView::loadProgressingStatusChanged should check m_firstVisuallyNonEmptyLayoutMilestoneIsPending
     4        https://bugs.webkit.org/show_bug.cgi?id=208008
     5        <rdar://problem/59630957>
     6
     7        Reviewed by Antti Koivisto.
     8
     9        If we haven't had a chance to issue a visually-non-empty milestone, we definitely need to check the content again when the load
     10        is finally completed.
     11
     12        * page/FrameView.cpp:
     13        (WebCore::FrameView::loadProgressingStatusChanged):
     14
    1152020-02-20  Alicia Boya García  <aboya@igalia.com>
    216
  • trunk/Source/WebCore/page/FrameView.cpp

    r257081 r257094  
    28552855void FrameView::loadProgressingStatusChanged()
    28562856{
    2857     if (!m_contentQualifiesAsVisuallyNonEmpty && frame().loader().isComplete())
     2857    if (m_firstVisuallyNonEmptyLayoutMilestoneIsPending && frame().loader().isComplete())
    28582858        fireLayoutRelatedMilestonesIfNeeded();
    28592859    updateLayerFlushThrottling();
Note: See TracChangeset for help on using the changeset viewer.