Bug 30921
Summary: | Web Inspector: enable multiselection in Elements Panel | ||
---|---|---|---|
Product: | WebKit | Reporter: | Pavel Feldman <pfeldman> |
Component: | Web Inspector (Deprecated) | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WONTFIX | ||
Severity: | Normal | CC: | apavlov, burg |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | All | ||
OS: | All |
Pavel Feldman
There should be a way to select multiple elements in order to:
- copy them into clipboard
- delete them at a time
- edit matching properties ?
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexander Pavlov (apavlov)
(In reply to comment #0)
> There should be a way to select multiple elements in order to:
> - copy them into clipboard
> - delete them at a time
> - edit matching properties ?
This barely makes sense, as DOM tree is not a plain data list with multiselection. Consider this tree:
<div>
<p>..</p>
<a href="...">..</a>
</div>
Does selecting DIV and P at the same time make any sense? What should happen when you try to (a) copy this multiselection into a clipboard, (b) delete them? Depending on the user, the case (b) might imply that they don't want to delete the A element. Is that right and/or intuitively correct?
On a sidenote, Firebug does not allow multiselections in its DOM tree either.