WebKit Bugzilla
Attachment 356543 Details for
Bug 192353
: Web Inspector: REGRESSION(r238602): Elements: collapsing a DOM node with the left arrow doesn't work
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-192353-20181204150222.patch (text/plain), 1.65 KB, created by
Matt Baker
on 2018-12-04 15:02:30 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Matt Baker
Created:
2018-12-04 15:02:30 PST
Size:
1.65 KB
patch
obsolete
>Subversion Revision: 238874 >diff --git a/Source/WebInspectorUI/ChangeLog b/Source/WebInspectorUI/ChangeLog >index 9271caa8a2edab6b000f0e46c3c0d9f4824a98a0..d53dc299a45e3c05c9557429ec8919d89f62140a 100644 >--- a/Source/WebInspectorUI/ChangeLog >+++ b/Source/WebInspectorUI/ChangeLog >@@ -1,3 +1,16 @@ >+2018-12-04 Matt Baker <mattbaker@apple.com> >+ >+ Web Inspector: REGRESSION(r238602): Elements: collapsing a DOM node with the left arrow doesn't work >+ https://bugs.webkit.org/show_bug.cgi?id=192353 >+ <rdar://problem/46455019> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * UserInterface/Views/TreeElement.js: >+ (WI.TreeElement.prototype.deselect): >+ Don't early return when the element is not the selected tree element. >+ This condition no longer holds now that TreeOutline supports multiple selection. >+ > 2018-12-04 Matt Baker <mattbaker@apple.com> > > Web Inspector: REGRESSION(r238602): Elements: changing selection no longer highlights the selected node >diff --git a/Source/WebInspectorUI/UserInterface/Views/TreeElement.js b/Source/WebInspectorUI/UserInterface/Views/TreeElement.js >index 5555209a1b4c084ee3c3293114b482a808e2ead9..e1d2a071062a94fb2185c3660b65a9c408b580c7 100644 >--- a/Source/WebInspectorUI/UserInterface/Views/TreeElement.js >+++ b/Source/WebInspectorUI/UserInterface/Views/TreeElement.js >@@ -532,7 +532,7 @@ WI.TreeElement = class TreeElement extends WI.Object > > deselect(suppressNotification) > { >- if (!this.treeOutline || this.treeOutline.selectedTreeElement !== this || !this.selected) >+ if (!this.treeOutline || !this.selected) > return false; > > this.selected = false;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 192353
:
356466
|
356543
|
356560
|
356676
|
356683