Bug 27578
| Summary: | [CSS3 Backgrounds and Borders] Drop the prefix from the border-radius properties | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Dave Hyatt <hyatt> |
| Component: | CSS | Assignee: | mitz |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | mitz |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | All | ||
| OS: | All | ||
| Bug Depends on: | |||
| Bug Blocks: | 27569 | ||
Dave Hyatt
This can be done by eliminating the old properties (like we did with -webkit-opacity), since there are no syntactic incompatibilities.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
mitz
(In reply to comment #0)
> This can be done by eliminating the old properties (like we did with
> -webkit-opacity), since there are no syntactic incompatibilities.
I think there is an incompatibility:
-webkit-border-radius: 10px 20px; means 10-by-20 ellipse in every corner.
border-radius: 10px 20px; means 10-by-10 circles in the top left and bottom right corners, 20-by-20 in the other corners.
mitz
I made a single patch for this bug and for bug 27584 and attached it to that bug.
mitz
Fixed in <http://trac.webkit.org/changeset/46508>.