Closed
Bug 284762
Opened 21 years ago
Closed 21 years ago
preferences.css - invalid property value of none.
Categories
(Firefox :: Settings UI, defect)
Tracking
()
RESOLVED
FIXED
Firefox1.5
People
(Reporter: sugar.waffle, Assigned: jaas)
References
()
Details
Attachments
(1 file)
|
625 bytes,
patch
|
mconnor
:
review+
|
Details | Diff | Splinter Review |
In Mac version, the following errors are in JavaScript Console.
Error: Error in parsing value for property 'margin'. Declaration dropped.
Source File: chrome://browser/skin/preferences/preferences.css
Line: 121
preferences.css of mac version:
116 #downloadFolder {
117 -moz-appearance: none;
118 background-color: transparent;
119 border: none;
120 padding: 1px 0px 0px 0px;
121 margin: none;
^^^^^
Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; ja-JP; rv:1.8b2) Gecko/20050304
Firefox/1.0+
Updated•21 years ago
|
Assignee: bugs → webmail
Target Milestone: --- → Firefox1.1
Comment 1•21 years ago
|
||
css should be:
margin: 0px;
(In reply to comment #0)
> In Mac version, the following errors are in JavaScript Console.
>
> Error: Error in parsing value for property 'margin'. Declaration dropped.
> Source File: chrome://browser/skin/preferences/preferences.css
> Line: 121
>
> preferences.css of mac version:
> 116 #downloadFolder {
> 117 -moz-appearance: none;
> 118 background-color: transparent;
> 119 border: none;
> 120 padding: 1px 0px 0px 0px;
> 121 margin: none;
> ^^^^^
>
> Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; ja-JP; rv:1.8b2) Gecko/20050304
> Firefox/1.0+
this is based on the previous comment, which makes sense to me
Comment 3•21 years ago
|
||
Actually you can just drop the margin declaration rather than changing it
Updated•21 years ago
|
Attachment #177901 -
Flags: review?(mconnor) → review+
removed the declaration altogether, landed on trunk
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 5•19 years ago
|
||
sorry for bugspam, long-overdue mass reassign of ancient QA contact bugs,
filter on "beltznerLovesGoats" to get rid of this mass change
QA Contact: mconnor → preferences
You need to log in
before you can comment on or make changes to this bug.
Description
•