mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb: Remove fallback value from Length::resolved()
Nobody makes undefined Lengths now, (although actually removing Undefined will come in a later commit) so we can remove this parameter, and `resolved_or_auto()`/`resolved_or_zero()`.
This commit is contained in:
committed by
Andreas Kling
parent
5b2482a939
commit
67066c5140
@@ -61,10 +61,10 @@ void InlineNode::paint(PaintContext& context, PaintPhase phase)
|
||||
for (auto const& layer : computed_box_shadow) {
|
||||
resolved_box_shadow_data.empend(
|
||||
layer.color,
|
||||
static_cast<int>(layer.offset_x.resolved_or_zero(*this).to_px(*this)),
|
||||
static_cast<int>(layer.offset_y.resolved_or_zero(*this).to_px(*this)),
|
||||
static_cast<int>(layer.blur_radius.resolved_or_zero(*this).to_px(*this)),
|
||||
static_cast<int>(layer.spread_distance.resolved_or_zero(*this).to_px(*this)),
|
||||
static_cast<int>(layer.offset_x.resolved(*this).to_px(*this)),
|
||||
static_cast<int>(layer.offset_y.resolved(*this).to_px(*this)),
|
||||
static_cast<int>(layer.blur_radius.resolved(*this).to_px(*this)),
|
||||
static_cast<int>(layer.spread_distance.resolved(*this).to_px(*this)),
|
||||
layer.placement == CSS::BoxShadowPlacement::Outer ? Painting::BoxShadowPlacement::Outer : Painting::BoxShadowPlacement::Inner);
|
||||
}
|
||||
Painting::paint_box_shadow(context, enclosing_int_rect(absolute_fragment_rect), resolved_box_shadow_data);
|
||||
|
||||
Reference in New Issue
Block a user