Closed
Bug 995677
Opened 11 years ago
Closed 9 years ago
Support rendering single-width and single-color rounded dashed/dotted borders
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 382721
People
(Reporter: takenspc, Unassigned)
References
Details
Attachments
(3 files)
10.11 KB,
patch
|
Details | Diff | Splinter Review | |
1.59 KB,
patch
|
Details | Diff | Splinter Review | |
30.77 KB,
image/png
|
Details |
Add fast path for rendering single-width and single-color rounded dashed / dotted borders using |Stroke()|.
Upcoming patches will support borders like:
div {
border-width: 5px; /* single-width */
border-color: pink; /* single-color */
border-style: dashed;
}
Upcoming patches will not support borders like:
div {
border-width: 5px 10px; /* not single-width */
border-color: pink; /* single-color */
border-style: dashed;
}
div {
border-width: 5px; /* single-width */
border-color: pink red; /* not single-color */
border-style: dashed;
}
Reporter | ||
Comment 1•11 years ago
|
||
Reporter | ||
Comment 2•11 years ago
|
||
Why does Firefox still (I'm on 33.1) not support rounded AND dotted/dashed borders?
Even IE gets it done...
You need to log in
before you can comment on or make changes to this bug.
Description
•