Title: [215082] trunk/Source/WebInspectorUI
Revision
215082
Author
commit-qu...@webkit.org
Date
2017-04-06 19:40:46 -0700 (Thu, 06 Apr 2017)

Log Message

Web Inspector: Source Map Resources should show up in the Debugger Sources list
https://bugs.webkit.org/show_bug.cgi?id=170581
<rdar://problem/31269140>

Patch by Joseph Pecoraro <pecor...@apple.com> on 2017-04-06
Reviewed by Matt Baker.

* UserInterface/Views/DebuggerSidebarPanel.js:
(WebInspector.DebuggerSidebarPanel):
Include SourceMapResources in the DebuggerSidebar's Sources tree outline.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (215081 => 215082)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-04-07 00:59:57 UTC (rev 215081)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-04-07 02:40:46 UTC (rev 215082)
@@ -1,5 +1,17 @@
 2017-04-06  Joseph Pecoraro  <pecor...@apple.com>
 
+        Web Inspector: Source Map Resources should show up in the Debugger Sources list
+        https://bugs.webkit.org/show_bug.cgi?id=170581
+        <rdar://problem/31269140>
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/DebuggerSidebarPanel.js:
+        (WebInspector.DebuggerSidebarPanel):
+        Include SourceMapResources in the DebuggerSidebar's Sources tree outline.
+
+2017-04-06  Joseph Pecoraro  <pecor...@apple.com>
+
         Web Inspector: Show all headers in the Request Headers section of the Resource details sidebar
         https://bugs.webkit.org/show_bug.cgi?id=16531
         <rdar://problem/5712895>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.js (215081 => 215082)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.js	2017-04-07 00:59:57 UTC (rev 215081)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.js	2017-04-07 02:40:46 UTC (rev 215082)
@@ -201,6 +201,7 @@
 
         this._scriptsContentTreeOutline = this.createContentTreeOutline();
         this._scriptsContentTreeOutline.addEventListener(WebInspector.TreeOutline.Event.SelectionDidChange, this._treeSelectionDidChange, this);
+        this._scriptsContentTreeOutline.includeSourceMapResourceChildren = true;
 
         let scriptsRow = new WebInspector.DetailsSectionRow;
         scriptsRow.element.appendChild(this._scriptsContentTreeOutline.element);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to