mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
Tests: Add clip-path to calc() coverage test
This commit is contained in:
parent
ec9d67ae17
commit
5723ed3443
Notes:
github-actions[bot]
2024-10-29 15:06:12 +00:00
Author: https://github.com/AtkinsSJ
Commit: 5723ed3443
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2037
Reviewed-by: https://github.com/gmta ✅
2 changed files with 10 additions and 0 deletions
|
@ -34,6 +34,10 @@ border-top-width: 'calc(2px)' -> 'calc(2px)'
|
|||
border-top-width: 'calc(2px * var(--n))' -> 'calc(2px * 2)'
|
||||
bottom: 'calc(2px)' -> 'calc(2px)'
|
||||
bottom: 'calc(2px * var(--n))' -> 'calc(2px * 2)'
|
||||
clip-path: 'polygon(calc(0px) calc(2px), calc(2px) calc(0px), calc(2px) calc(2px))' -> 'polygon(calc(0px) calc(2px),calc(2px) calc(0px),calc(2px) calc(2px))'
|
||||
clip-path: 'polygon(calc(0px * var(--n)) calc(2px * var(--n)), calc(2px * var(--n)) calc(0px * var(--n)), calc(2px * var(--n)) calc(2px * var(--n)))' -> 'polygon(calc(0px * 2) calc(2px * 2),calc(2px * 2) calc(0px * 2),calc(2px * 2) calc(2px * 2))'
|
||||
clip-path: 'polygon(calc(0%) calc(2%), calc(2%) calc(0%), calc(2%) calc(2%))' -> 'polygon(calc(0%) calc(2%),calc(2%) calc(0%),calc(2%) calc(2%))'
|
||||
clip-path: 'polygon(calc(0% * var(--n)) calc(2% * var(--n)), calc(2% * var(--n)) calc(0% * var(--n)), calc(2% * var(--n)) calc(2% * var(--n)))' -> 'polygon(calc(0% * 2) calc(2% * 2),calc(2% * 2) calc(0% * 2),calc(2% * 2) calc(2% * 2))'
|
||||
column-count: 'calc(2)' -> 'calc(2)'
|
||||
column-count: 'calc(2 * var(--n))' -> '4'
|
||||
column-gap: 'calc(2px)' -> 'calc(2px)'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue