RESOLVED FIXED 14377
Support disabling individual CSS properties
https://bugs.webkit.org/show_bug.cgi?id=14377
Summary Support disabling individual CSS properties
Adam Roben (:aroben)
Reported 2007-06-24 22:43:57 PDT
One of Firebug's very handy features is easy disabling of individual CSS properties. It would be nice if the Inspector supported this as well.
Attachments
Proposed design (46.46 KB, image/png)
2008-08-01 11:45 PDT, Timothy Hatcher
no flags
Proposed patch (20.27 KB, patch)
2008-08-01 11:46 PDT, Timothy Hatcher
aroben: review+
Charles Gaudette
Comment 1 2007-06-24 23:31:29 PDT
Part of Firebug's feature here is the ability to add a new property. This is less obvious than disabling — right-click on a CSS rule name, as in "body {", has New Property in the contextual menu. I've also noted this in http://bugs.webkit.org/show_bug.cgi?id=11920 .
Timothy Hatcher
Comment 2 2007-12-26 23:55:22 PST
Bug 16551 asks for the ability to disable DOM nodes.
Adam Roben (:aroben)
Comment 3 2008-01-29 11:00:14 PST
Timothy Hatcher
Comment 4 2008-08-01 11:45:01 PDT
Created attachment 22603 [details] Proposed design
Timothy Hatcher
Comment 5 2008-08-01 11:46:22 PDT
Created attachment 22604 [details] Proposed patch
Adam Roben (:aroben)
Comment 6 2008-08-01 12:47:13 PDT
Comment on attachment 22604 [details] Proposed patch +Object.hasProperties = function(obj) +{ + if (!obj) + return false; This doesn't seem right. Won't the empty string evaluate to false here, even though it has properties? I personally dislike booleans with a negative meaning, so everywhere you have a boolean "disabled" (or a class "disabled") I wish it were "enabled" instead. I find that easier to understand, because you end up with fewer double-negatives, like if (!disabled). It would be great to land some tests with this. r=me
Anthony Ricaud
Comment 7 2008-08-01 12:49:28 PDT
Nice ! Any reason to put the checkbox after the property ? Putting the checkbox before the property seems better. It's easier to click on the good checkbox if the column is wide.
Timothy Hatcher
Comment 8 2008-08-01 13:14:00 PDT
(In reply to comment #7) > Nice ! > > Any reason to put the checkbox after the property ? Putting the checkbox before > the property seems better. It's easier to click on the good checkbox if the > column is wide. The checkboxes are on the right, since they aren't visible all the time and the empty space on the left would leave less room for text.
Anthony Ricaud
Comment 9 2008-08-01 13:15:25 PDT
There is already an empty space under the arrow that can be used
Timothy Hatcher
Comment 10 2008-08-01 13:18:26 PDT
(In reply to comment #9) > There is already an empty space under the arrow that can be used > Not for shorthands. So all the properties would need to shift over even more.
Timothy Hatcher
Comment 11 2008-08-01 13:19:37 PDT
(In reply to comment #6) > (From update of attachment 22604 [details] [edit]) > +Object.hasProperties = function(obj) > +{ > + if (!obj) > + return false; > > This doesn't seem right. Won't the empty string evaluate to false here, even > though it has properties? > Yep, changed to: if (typeof obj === "undefined" || typeof obj === "null") return false; > I personally dislike booleans with a negative meaning, so everywhere you have a > boolean "disabled" (or a class "disabled") I wish it were "enabled" instead. I > find that easier to understand, because you end up with fewer double-negatives, > like if (!disabled). I went with disabled since it is the rare case and seemed better to not have all tree elements with an "enabled" class.
Timothy Hatcher
Comment 12 2008-08-01 13:24:30 PDT
Landed in r35514.
Note You need to log in before you can comment on or make changes to this bug.