⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280956 in webkit


Ignore:
Timestamp:
Aug 11, 2021, 9:29:25 PM (5 years ago)
Author:
achristensen@apple.com
Message:

Remove optimistic assertion added in r280931
https://bugs.webkit.org/show_bug.cgi?id=229008

  • page/PerformanceTiming.cpp:

(WebCore::PerformanceTiming::fetchStart const):
This assertion is hit in the test fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
when accessing window.performance.fetchStart from a detached window object from a frame that has been removed from the DOM.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r280953 r280956  
     12021-08-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Remove optimistic assertion added in r280931
     4        https://bugs.webkit.org/show_bug.cgi?id=229008
     5
     6        * page/PerformanceTiming.cpp:
     7        (WebCore::PerformanceTiming::fetchStart const):
     8        This assertion is hit in the test fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
     9        when accessing window.performance.fetchStart from a detached window object from a frame that has been removed from the DOM.
     10
    1112021-08-11  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebCore/page/PerformanceTiming.cpp

    r280931 r280956  
    146146    }
    147147
    148     // Like PerformanceResourceTiming::fetchStart, fetchStart is a required property
    149     ASSERT(m_fetchStart);
    150148    return m_fetchStart;
    151149}
Note: See TracChangeset for help on using the changeset viewer.