Closed
Bug 936037
Opened 12 years ago
Closed 11 years ago
Add option to group similar entries in web console
Categories
(DevTools :: Console, enhancement)
DevTools
Console
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: sjw+bugzilla, Unassigned)
Details
It would be nice if there is an option to group similar entries (like fallbacks) in the console. This would improove debugging on Firefox a lot.
Example:
1 .one {
2 background: -webkit-linear-gradient(top, gold, orange);
3 background: -moz-linear-gradient(top, gold, orange);
4 background: -o-linear-gradient(top, gold, orange);
5 background: linear-gradient(to bottom, gold, orange);
6 [...]
7 }
8 .two {
9 background: -webkit-linear-gradient(top, gold, orange);
10 background: -moz-linear-gradient(top, gold, orange);
11 background: -o-linear-gradient(top, gold, orange);
12 background: linear-gradient(to bottom, gold, orange);
13 [...]
13 }
The Web Console find an error on line 2, 4, 9 and 11. So I see two way to group them:
A) Grouping by error: The Console make a group "backgroud: -webkit[...]" line 2 and 9 and a group "background: -o[...]" with the lines 4 and 11.
B) Grouping by rules and properties: The Console make a group ".one background" with line 2 and 4 and another group ".two background" with line 9 and 11.
I think scenario A would be helful if you made the same mistake in the whole document. The seccond one would be helpful to ignore fallbacks.
It's like the idea I described in #870487, there is also an exaple with the old error console (see https://bug870487.bugzilla.mozilla.org/attachment.cgi?id=747548).
Updated•12 years ago
|
Component: Developer Tools: Debugger → Developer Tools: Console
Comment 1•11 years ago
|
||
Thanks for the feature request. During triage we decided this is a WONTFIX bug. We might hide CSS warnings caused by vendor prefixes. I can't find the bug number now, but we should have that already filed.
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → WONTFIX
But what about prefixed values and properties that are not implemented yet?
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•