mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb/CSS: Correct "percentages-resolve-to" data for properties
These were missing for properties that take a `<position>`, and were incorrectly present for opacity-related properties.
This commit is contained in:
committed by
Alexander Kalenik
parent
d15e1eb9f6
commit
6ebe19d13b
Notes:
github-actions[bot]
2025-01-31 13:25:41 +00:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/LadybirdBrowser/ladybird/commit/6ebe19d13b7 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3417 Reviewed-by: https://github.com/gmta
@@ -139,7 +139,7 @@ ry: 'calc(2% * var(--n))' -> 'calc(2% * 2)'
|
||||
stop-opacity: 'calc(2)' -> '2'
|
||||
stop-opacity: 'calc(2 * var(--n))' -> '4'
|
||||
stroke-opacity: 'calc(2%)' -> '2%'
|
||||
stroke-opacity: 'calc(2% * var(--n))' -> 'calc(2% * 2)'
|
||||
stroke-opacity: 'calc(2% * var(--n))' -> '4%'
|
||||
stroke-width: 'calc(2px)' -> '2px'
|
||||
stroke-width: 'calc(2px * var(--n))' -> '4px'
|
||||
tab-size: 'calc(2px)' -> '2px'
|
||||
|
||||
Reference in New Issue
Block a user