Bug 84618
Summary: | REGRESSION(r112177): border-color is serialized as border | ||
---|---|---|---|
Product: | WebKit | Reporter: | Ryosuke Niwa <rniwa> |
Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | davidbarr, menard |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Ryosuke Niwa
It seems like we need to bail out even more aggressively.
Right now, WebKit serializes .foo { border-color: red; } as .foo { border: red; }, which is incorrect.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexis Menard (darktears)
(In reply to comment #0)
> It seems like we need to bail out even more aggressively.
>
> Right now, WebKit serializes .foo { border-color: red; } as .foo { border: red; }, which is incorrect.
Same problem as https://bugs.webkit.org/show_bug.cgi?id=83026 maybe we should keep one only.
Ryosuke Niwa
Note border: red sets both border-style and border-width to the initial values whereas border-color: red doesn't.
Ryosuke Niwa
*** This bug has been marked as a duplicate of bug 83026 ***