Title: [207466] trunk/Source/WebKit2
Revision
207466
Author
commit-qu...@webkit.org
Date
2016-10-18 10:07:35 -0700 (Tue, 18 Oct 2016)

Log Message

Remote Web Inspector: Timeline UI not updating while recording
https://bugs.webkit.org/show_bug.cgi?id=163582
<rdar://problem/28766837>

Patch by Joseph Pecoraro <pecor...@apple.com> on 2016-10-18
Reviewed by Timothy Hatcher.

* WebProcess/WebPage/RemoteWebInspectorUI.cpp:
(WebKit::RemoteWebInspectorUI::frontendLoaded):
Local inspector windows keep the web view alive and toggle the
WebInspector.visible state depending on whether or not an inspector is
open. Remote Inspector windows go away when closed, so they can always
be marked as open. This matches earlier remote inspector behavior.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (207465 => 207466)


--- trunk/Source/WebKit2/ChangeLog	2016-10-18 16:26:17 UTC (rev 207465)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-18 17:07:35 UTC (rev 207466)
@@ -1,3 +1,18 @@
+2016-10-18  Joseph Pecoraro  <pecor...@apple.com>
+
+        Remote Web Inspector: Timeline UI not updating while recording
+        https://bugs.webkit.org/show_bug.cgi?id=163582
+        <rdar://problem/28766837>
+
+        Reviewed by Timothy Hatcher.
+
+        * WebProcess/WebPage/RemoteWebInspectorUI.cpp:
+        (WebKit::RemoteWebInspectorUI::frontendLoaded):
+        Local inspector windows keep the web view alive and toggle the
+        WebInspector.visible state depending on whether or not an inspector is
+        open. Remote Inspector windows go away when closed, so they can always
+        be marked as open. This matches earlier remote inspector behavior.
+
 2016-10-18  Eric Carlson  <eric.carl...@apple.com>
 
         [MediaStream] Resolve constraints and enumerate devices in the UI process

Modified: trunk/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp (207465 => 207466)


--- trunk/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp	2016-10-18 16:26:17 UTC (rev 207465)
+++ trunk/Source/WebKit2/WebProcess/WebPage/RemoteWebInspectorUI.cpp	2016-10-18 17:07:35 UTC (rev 207466)
@@ -95,6 +95,8 @@
 {
     m_frontendAPIDispatcher.frontendLoaded();
 
+    m_frontendAPIDispatcher.dispatchCommand(ASCIILiteral("setIsVisible"), true);
+
     bringToFront();
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to