LibWeb/CSS: Disallow negative time values for transition-duration

This commit is contained in:
Tim Ledbetter 2025-03-12 16:30:19 +00:00 committed by Jelle Raaijmakers
commit 37eb2be348
Notes: github-actions[bot] 2025-03-14 07:53:33 +00:00
3 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,10 @@
Harness status: OK
Found 5 tests
5 Pass
Pass e.style['transition-duration'] = "infinite" should not set the property value
Pass e.style['transition-duration'] = "-500ms" should not set the property value
Pass e.style['transition-duration'] = "1s 2s" should not set the property value
Pass e.style['transition-duration'] = "1s, initial" should not set the property value
Pass e.style['transition-duration'] = "initial, 1s" should not set the property value