LibWeb: Show bounding_rect in PushStackingContext dump

This commit is contained in:
Jelle Raaijmakers 2025-11-12 14:20:24 +01:00 committed by Jelle Raaijmakers
parent 740629a3a8
commit 3083b19b09
Notes: github-actions[bot] 2025-11-18 14:12:02 +00:00

View file

@ -95,7 +95,7 @@ void AddClipRect::dump(StringBuilder& builder) const
void PushStackingContext::dump(StringBuilder& builder) const
{
auto affine_transform = extract_2d_affine_transform(transform.matrix);
builder.appendff("PushStackingContext opacity={} isolate={} has_clip_path={} transform={}", opacity, isolate, clip_path.has_value(), affine_transform);
builder.appendff("PushStackingContext opacity={} isolate={} has_clip_path={} transform={} bounding_rect={}", opacity, isolate, clip_path.has_value(), affine_transform, bounding_rect);
}
void PopStackingContext::dump(StringBuilder& builder) const