Open
Bug 1368028
Opened 8 years ago
Updated 2 years ago
Extracting a shared helper for inspecting a DOM node
Categories
(DevTools :: Framework, enhancement, P3)
DevTools
Framework
Tracking
(Not tracked)
NEW
People
(Reporter: rpl, Unassigned)
Details
In Bug 1300590 we are introducing the `inspect` binding helper on the devtools.inspectedWindow.eval WebExtensions API method, which is similar to the `inspect` binding provided by the integrated webconsole panel, and share a lot of bits in common with the webconsole `console-output` module, an internal helper module that is used to create hyperlinks between the console and the inspector (e.g. to create a clickable icon near a logged DOM element, that the user can click to inspect that element in the Inspector panel):
- http://searchfox.org/mozilla-central/source/devtools/client/webconsole/console-output.js#3166
- http://searchfox.org/mozilla-central/source/devtools/client/webconsole/console-output.js#3253
The goal of this issue is share as much code as possible between this similar features as a follow of Bug 1300590.
Comment 1•8 years ago
|
||
Note that as part of the DevTools GoFaster project, we're trying to cut as many dependencies from the rest of the tree to /devtools/ as possible, in order to make it possible to remove the DevTools code at some stage.
So, the code sharing described in comment 0 would have to be mindful of that.
I want to bring this to Julian's attention for this reason (cc'd him on the bug).
Luca: are you intending to implement this yourself or looking for someone on the team to do this? Not sure which priority to assign to this yet.
Updated•6 years ago
|
Product: Firefox → DevTools
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•