Bug 27578

Summary: [CSS3 Backgrounds and Borders] Drop the prefix from the border-radius properties
Product: WebKit Reporter: Dave Hyatt <hyatt>
Component: CSSAssignee: mitz
Status: RESOLVED FIXED    
Severity: Normal CC: mitz
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 27569    

Description Dave Hyatt 2009-07-22 15:49:46 PDT
This can be done by eliminating the old properties (like we did with -webkit-opacity), since there are no syntactic incompatibilities.
Comment 1 mitz 2009-07-27 19:52:51 PDT
(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.
Comment 2 mitz 2009-07-28 17:03:05 PDT
I made a single patch for this bug and for bug 27584 and attached it to that bug.
Comment 3 mitz 2009-07-28 17:17:39 PDT
Fixed in <http://trac.webkit.org/changeset/46508>.