LibWeb/Painting: Note that inset and outset borders are implemented

This commit is contained in:
Sam Atkins 2025-08-04 17:28:01 +01:00
commit c660df70b4
Notes: github-actions[bot] 2025-08-11 10:08:36 +00:00

View file

@ -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;
}