Web Inspector: Elements: ⌘-A should select all visible nodes
https://bugs.webkit.org/show_bug.cgi?id=192120
<rdar://problem/46344435>

Reviewed by Devin Rousso.

* UserInterface/Views/TreeOutline.js:
(WI.TreeOutline.prototype._treeKeyDown):
Remove an early return, allowing `WI.SelectionController` to handle ⌘-A
and select all items.


git-svn-id: http://svn.webkit.org/repository/webkit/trunk@238858 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebInspectorUI/ChangeLog b/Source/WebInspectorUI/ChangeLog
index cac3a7d..ab9532a 100644
--- a/Source/WebInspectorUI/ChangeLog
+++ b/Source/WebInspectorUI/ChangeLog
@@ -1,3 +1,16 @@
+2018-12-04  Matt Baker  <mattbaker@apple.com>
+
+        Web Inspector: Elements: ⌘-A should select all visible nodes
+        https://bugs.webkit.org/show_bug.cgi?id=192120
+        <rdar://problem/46344435>
+
+        Reviewed by Devin Rousso.
+
+        * UserInterface/Views/TreeOutline.js:
+        (WI.TreeOutline.prototype._treeKeyDown):
+        Remove an early return, allowing `WI.SelectionController` to handle ⌘-A
+        and select all items.
+
 2018-12-04  Devin Rousso  <drousso@apple.com>
 
         Web Inspector: Audit: tests should support async operations