Closed
Bug 872711
Opened 12 years ago
Closed 11 years ago
Warning: Error in parsing value for 'border-bottom-left-radius'. Declaration dropped.
Categories
(Firefox Graveyard :: SocialAPI, defect)
Tracking
(firefox22 unaffected, firefox23 affected, firefox24 fixed)
RESOLVED
FIXED
Firefox 24
Tracking | Status | |
---|---|---|
firefox22 | --- | unaffected |
firefox23 | --- | affected |
firefox24 | --- | fixed |
People
(Reporter: jaws, Assigned: jaws)
References
Details
(Whiteboard: [qa-])
Attachments
(1 file)
3.69 KB,
patch
|
mixedpuppy
:
review+
|
Details | Diff | Splinter Review |
Timestamp: 5/15/2013 4:02:27 PM
Warning: Error in parsing value for 'border-bottom-left-radius'. Declaration dropped.
Source File: chrome://browser/skin/browser.css
Line: 1370, Column: 29
Source Code:
border-bottom-left-radius: none;
In the CSS:
.social-share-frame {
background: linear-gradient(to bottom, #f0f4f7, #fafbfc);
width: 330px;
height: 150px;
border-top-left-radius: none;
border-bottom-left-radius: none;
border-top-right-radius: inherit;
border-bottom-right-radius: inherit;
/* we resize our panels dynamically, make it look nice */
transition: height 100ms ease-out, width 100ms ease-out;
}
border-top-left-radius and border-top-right-radius need a length unit, so 0 is probably what you want here.
Assignee | ||
Updated•12 years ago
|
Whiteboard: [good first bug][mentor=jaws][lang=css]
Assignee | ||
Comment 1•11 years ago
|
||
Hi Alex, thanks for offering to work on this bug!
To find the places that need this fixed, you can look at the following search results:
http://mxr.mozilla.org/mozilla-central/search?string=border-top-left-radius:+none;
Assignee: nobody → toman22
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•11 years ago
|
||
Assignee: toman22 → jaws
Attachment #757796 -
Flags: review?(mixedpuppy)
Assignee | ||
Updated•11 years ago
|
Attachment #757796 -
Flags: review?(mhammond)
Assignee | ||
Updated•11 years ago
|
Whiteboard: [good first bug][mentor=jaws][lang=css]
Comment 3•11 years ago
|
||
Comment on attachment 757796 [details] [diff] [review]
Patch
I only tested on osx, but looks good.
Attachment #757796 -
Flags: review?(mixedpuppy)
Attachment #757796 -
Flags: review?(mhammond)
Attachment #757796 -
Flags: review+
Assignee | ||
Comment 4•11 years ago
|
||
Comment 5•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 24
Updated•11 years ago
|
Updated•6 years ago
|
Product: Firefox → Firefox Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•