Bug 63990

Summary: Web Inspector: implement drag'n'drop in the elements panel for reordering nodes.
Product: WebKit Reporter: Pavel Feldman <pfeldman>
Component: Web Inspector (Deprecated)Assignee: Pavel Feldman <pfeldman>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch yurys: review+

Description Pavel Feldman 2011-07-06 06:27:51 PDT
Patch to follow.
Comment 1 Pavel Feldman 2011-07-06 06:31:02 PDT
Created attachment 99824 [details]
Patch
Comment 2 Yury Semikhatsky 2011-07-06 08:09:58 PDT
Comment on attachment 99824 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=99824&action=review

> Source/WebCore/inspector/front-end/ElementsTreeOutline.js:295
> +            return false;

should be return;

> Source/WebCore/inspector/front-end/ElementsTreeOutline.js:316
> +        var treeElement = this.treeElementFromEvent(event);

There is already _treeElementFromEvent, please leave just one of the methods.

> Source/WebCore/inspector/front-end/ElementsTreeOutline.js:392
> +    {   var treeElement = this.treeElementFromEvent(event);

style: var treeElement... should go on the next line
Comment 3 Pavel Feldman 2011-07-06 08:25:56 PDT
Committed r90460: <http://trac.webkit.org/changeset/90460>