LibWeb: Return absolutized computed value for outline width property

This commit is contained in:
Tim Ledbetter 2025-04-04 23:56:09 +01:00 committed by Andreas Kling
commit 32812f5db0
Notes: github-actions[bot] 2025-04-05 10:55:27 +00:00
7 changed files with 100 additions and 32 deletions

View file

@ -116,8 +116,8 @@ order: 'calc(2)' -> '2'
order: 'calc(2 * var(--n))' -> '4'
outline-offset: 'calc(2px)' -> '2px'
outline-offset: 'calc(2px * var(--n))' -> '4px'
outline-width: 'calc(2px)' -> '2px'
outline-width: 'calc(2px * var(--n))' -> '4px'
outline-width: 'calc(2px)' -> '0px'
outline-width: 'calc(2px * var(--n))' -> '0px'
padding-bottom: 'calc(2px)' -> '2px'
padding-bottom: 'calc(2px * var(--n))' -> '4px'
padding-left: 'calc(2%)' -> '15.6875px'