Title: [193450] branches/safari-601.1.46-branch/Source/WebCore
Revision
193450
Author
[email protected]
Date
2015-12-04 12:53:19 -0800 (Fri, 04 Dec 2015)

Log Message

Merge r192585. rdar://problem/23581597

Modified Paths

Diff

Modified: branches/safari-601.1.46-branch/Source/WebCore/ChangeLog (193449 => 193450)


--- branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2015-12-04 20:53:15 UTC (rev 193449)
+++ branches/safari-601.1.46-branch/Source/WebCore/ChangeLog	2015-12-04 20:53:19 UTC (rev 193450)
@@ -1,5 +1,23 @@
 2015-12-04  Timothy Hatcher  <[email protected]>
 
+        Merge r192585. rdar://problem/23581597
+
+    2015-11-18  Joseph Pecoraro  <[email protected]>
+
+            Web Inspector: Timeline Recording across page navigations behaves poorly
+            https://bugs.webkit.org/show_bug.cgi?id=151112
+
+            Reviewed by Timothy Hatcher.
+
+            * inspector/InspectorPageAgent.cpp:
+            (WebCore::InspectorPageAgent::frameStartedLoading): Deleted.
+            Don't reset the execution stopwatch on page navigation.
+            If a timeline is actively being recorded on the frontend
+            then all new timestamps suddenly downshifted towards zero
+            introduces bad data.
+
+2015-12-04  Timothy Hatcher  <[email protected]>
+
         Merge r188222. rdar://problem/23581597
 
     2015-08-10  Devin Rousso  <[email protected]>

Modified: branches/safari-601.1.46-branch/Source/WebCore/inspector/InspectorPageAgent.cpp (193449 => 193450)


--- branches/safari-601.1.46-branch/Source/WebCore/inspector/InspectorPageAgent.cpp	2015-12-04 20:53:15 UTC (rev 193449)
+++ branches/safari-601.1.46-branch/Source/WebCore/inspector/InspectorPageAgent.cpp	2015-12-04 20:53:19 UTC (rev 193450)
@@ -824,12 +824,6 @@
 
 void InspectorPageAgent::frameStartedLoading(Frame& frame)
 {
-    if (frame.isMainFrame()) {
-        auto stopwatch = m_instrumentingAgents->inspectorEnvironment().executionStopwatch();
-        stopwatch->reset();
-        stopwatch->start();
-    }
-
     m_frontendDispatcher->frameStartedLoading(frameId(&frame));
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to