Changeset 280956 in webkit
- Timestamp:
- Aug 11, 2021, 9:29:25 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
page/PerformanceTiming.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r280953 r280956 1 2021-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 1 11 2021-08-11 Chris Dumez <cdumez@apple.com> 2 12 -
trunk/Source/WebCore/page/PerformanceTiming.cpp
r280931 r280956 146 146 } 147 147 148 // Like PerformanceResourceTiming::fetchStart, fetchStart is a required property149 ASSERT(m_fetchStart);150 148 return m_fetchStart; 151 149 }
Note:
See TracChangeset
for help on using the changeset viewer.