Summary: | Web Inspector: Clicking on the expand object arrow should always expand an object | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Nikita Vasilyev <nvasilyev> | ||||||||||||||
Component: | Web Inspector | Assignee: | Nikita Vasilyev <me> | ||||||||||||||
Status: | RESOLVED FIXED | ||||||||||||||||
Severity: | Normal | CC: | commit-queue, graouts, joepeck, me, timothy, webkit-bug-importer | ||||||||||||||
Priority: | P2 | Keywords: | InRadar | ||||||||||||||
Version: | 528+ (Nightly build) | ||||||||||||||||
Hardware: | All | ||||||||||||||||
OS: | All | ||||||||||||||||
Attachments: |
|
Created attachment 242779 [details]
patch
Created attachment 242780 [details]
patch
Created attachment 242781 [details] Patch Sorry for spam, I don’t know how to make `Tools/Scripts/webkit-patch upload` send patches from nvasilyev@apple.com instead of me@elv1s.ru. Comment on attachment 242781 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=242781&action=review > Source/WebInspectorUI/UserInterface/Views/LogContentView.js:-441 > - _click: function(event) > - { > - if (!this._mouseInteractionShouldPreventClickPropagation) > - return; > - > - event.stopPropagation(); > - delete this._mouseInteractionShouldPreventClickPropagation; > - }, If you drag select a few Console rows, and then release the mouse on an Object expand arrow, does the object expand? (In reply to comment #5) > Comment on attachment 242781 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=242781&action=review > > > Source/WebInspectorUI/UserInterface/Views/LogContentView.js:-441 > > - _click: function(event) > > - { > > - if (!this._mouseInteractionShouldPreventClickPropagation) > > - return; > > - > > - event.stopPropagation(); > > - delete this._mouseInteractionShouldPreventClickPropagation; > > - }, > > If you drag select a few Console rows, and then release the mouse on an > Object expand arrow, does the object expand? It doesn’t: https://cloudup.com/c7FMD7dKgZF. I believe, this is how it’s supposed to be. Created attachment 243324 [details]
Patch
Same patch after `git pull --rebase origin master`.
Comment on attachment 243324 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=243324&action=review r=me, though I wonder why this code was there originally. > Source/WebInspectorUI/ChangeLog:10 > + Web Inspector: Clicking on the expand object arrow should always expand an object > + https://bugs.webkit.org/show_bug.cgi?id=139382 > + > + Reviewed by NOBODY (OOPS!). > + > + * UserInterface/Views/LogContentView.js: > + (WebInspector.LogContentView): > + (WebInspector.LogContentView.prototype._click): Deleted. Could use a comment about "why". In this case the click hander's stop propagation was preventing the object expansion from happening as expected. Created attachment 243331 [details]
Patch
Not sure if I use the right tense to describe the original (broken) behavior.
Comment on attachment 243331 [details] Patch Clearing flags on attachment: 243331 Committed r177331: <http://trac.webkit.org/changeset/177331> All reviewed patches have been landed. Closing bug. |
Created attachment 242778 [details] Screencast When object is not selected, clicking on the expand object arrow selects the object but doesn’t expand it.