LibWeb/CSS: Add math expression support for transform-origin

This commit is contained in:
Ankush Chatterjee 2024-10-23 22:15:19 +05:30 committed by Andreas Kling
commit 85356094b5
Notes: github-actions[bot] 2024-10-27 09:35:38 +00:00
3 changed files with 7 additions and 2 deletions

View file

@ -138,8 +138,8 @@ text-indent: 'calc(2%)' -> 'calc(2%)'
text-indent: 'calc(2% * var(--n))' -> '4%'
top: 'calc(2%)' -> 'calc(2%)'
top: 'calc(2% * var(--n))' -> '4%'
transform-origin: 'calc(2px) calc(2%)' -> '50% 50%'
transform-origin: 'calc(2px * var(--n)) calc(2% * var(--n))' -> '50% 50%'
transform-origin: 'calc(2px) calc(2%)' -> 'calc(2px) calc(2%)'
transform-origin: 'calc(2px * var(--n)) calc(2% * var(--n))' -> 'calc(2px * 2) 4%'
transition-delay: 'calc(2s)' -> 'calc(2s)'
transition-delay: 'calc(2s * var(--n))' -> '4s'
transition-duration: 'calc(2s)' -> 'calc(2s)'