Changeset 192585 in webkit
- Timestamp:
- Nov 18, 2015, 1:46:33 PM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r192583 r192585 1 2015-11-18 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Timeline Recording across page navigations behaves poorly 4 https://bugs.webkit.org/show_bug.cgi?id=151112 5 6 Reviewed by Timothy Hatcher. 7 8 * inspector/InspectorPageAgent.cpp: 9 (WebCore::InspectorPageAgent::frameStartedLoading): Deleted. 10 Don't reset the execution stopwatch on page navigation. 11 If a timeline is actively being recorded on the frontend 12 then all new timestamps suddenly downshifted towards zero 13 introduces bad data. 14 1 15 2015-11-18 Daniel Bates <dabates@apple.com> 2 16 -
trunk/Source/WebCore/inspector/InspectorPageAgent.cpp
r192061 r192585 804 804 void InspectorPageAgent::frameStartedLoading(Frame& frame) 805 805 { 806 if (frame.isMainFrame()) {807 auto stopwatch = m_environment.executionStopwatch();808 stopwatch->reset();809 stopwatch->start();810 }811 812 806 m_frontendDispatcher->frameStartedLoading(frameId(&frame)); 813 807 }
Note:
See TracChangeset
for help on using the changeset viewer.