RESOLVED FIXED Bug 27584
[CSS3 Backgrounds and Borders] Handle the / and 4 values in border-radius
https://bugs.webkit.org/show_bug.cgi?id=27584
Summary [CSS3 Backgrounds and Borders] Handle the / and 4 values in border-radius
Simon Fraser (smfr)
Reported 2009-07-22 16:11:00 PDT
CSS 3 border radius has the ability to specify 4 values at one time, and separate values with a /. We need to handle these. We already handle the radius-reducing algorithm in the spec.
Attachments
Support the new border-radius syntax and maintain legacy -webkit-border-radius syntax (36.94 KB, patch)
2009-07-28 17:02 PDT, mitz
simon.fraser: review+
mitz
Comment 1 2009-07-28 17:02:36 PDT
Created attachment 33680 [details] Support the new border-radius syntax and maintain legacy -webkit-border-radius syntax
Simon Fraser (smfr)
Comment 2 2009-07-28 17:13:43 PDT
Comment on attachment 33680 [details] Support the new border-radius syntax and maintain legacy -webkit-border-radius syntax > Index: WebCore/css/CSSParser.cpp > =================================================================== > + case CSSPropertyBorderRadius: > + case CSSPropertyWebkitBorderRadius: > + return parseBorderRadius(propId, important); > + break; No need for the break after return. r=me
mitz
Comment 3 2009-07-28 17:17:45 PDT
Adam Roben (:aroben)
Comment 4 2009-07-28 17:18:26 PDT
*** Bug 23675 has been marked as a duplicate of this bug. ***
Note You need to log in before you can comment on or make changes to this bug.