mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Allow multiple values for the transition-delay
property
This commit is contained in:
parent
c5f1f36119
commit
1ca9f2a44d
Notes:
github-actions[bot]
2025-04-23 20:04:09 +00:00
Author: https://github.com/tcl3
Commit: 1ca9f2a44d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4387
Reviewed-by: https://github.com/AtkinsSJ ✅
4 changed files with 55 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Transitions: parsing transition-delay with valid values</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-transitions/#propdef-transition-delay">
|
||||
<meta name="assert" content="transition-delay supports the full grammar '<time> #'.">
|
||||
<script src="../../../resources/testharness.js"></script>
|
||||
<script src="../../../resources/testharnessreport.js"></script>
|
||||
<script src="../../../css/support/parsing-testcommon.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
test_valid_value("transition-delay", '0s');
|
||||
test_valid_value("transition-delay", '500ms');
|
||||
test_valid_value("transition-delay", '1s, 2s');
|
||||
test_valid_value("transition-delay", '-1s, -2s');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue