mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
LibWeb/Painting: Note that inset and outset borders are implemented
This commit is contained in:
parent
7c2b8f6ee7
commit
c660df70b4
|
|
@ -94,13 +94,14 @@ void paint_border(DisplayListRecorder& painter, BorderEdge edge, DevicePixelRect
|
|||
gfx_line_style = Gfx::LineStyle::Dashed;
|
||||
break;
|
||||
case CSS::LineStyle::Solid:
|
||||
case CSS::LineStyle::Inset:
|
||||
case CSS::LineStyle::Outset:
|
||||
// The only difference between Inset/Outset and Solid is the color, and we already handled that above.
|
||||
gfx_line_style = Gfx::LineStyle::Solid;
|
||||
break;
|
||||
case CSS::LineStyle::Double:
|
||||
case CSS::LineStyle::Groove:
|
||||
case CSS::LineStyle::Ridge:
|
||||
case CSS::LineStyle::Inset:
|
||||
case CSS::LineStyle::Outset:
|
||||
// FIXME: Implement these
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user