LibWeb: Remove done TODO and fix typo

This commit is contained in:
MacDue 2022-08-23 13:13:24 +01:00 committed by Linus Groh
parent 40ad8b793d
commit 50ab2de10e

View file

@ -104,7 +104,6 @@ void paint_background(PaintContext& context, Layout::NodeWithStyleAndBoxModelMet
// Note: Background layers are ordered front-to-back, so we paint them in reverse
for (auto& layer : background_layers->in_reverse()) {
// TODO: Gradients!
if (!layer_is_paintable(layer))
continue;
Gfx::PainterStateSaver state { painter };
@ -136,7 +135,7 @@ void paint_background(PaintContext& context, Layout::NodeWithStyleAndBoxModelMet
break;
}
// FIXME: Implement proper derault sizing algorithm: https://drafts.csswg.org/css-images/#default-sizing
// FIXME: Implement proper default sizing algorithm: https://drafts.csswg.org/css-images/#default-sizing
auto natural_image_width = image.natural_width().value_or(background_positioning_area.width());
auto natural_image_height = image.natural_height().value_or(background_positioning_area.height());