mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Allow transition-property with multiple values
This commit is contained in:
committed by
Sam Atkins
parent
5d48652890
commit
1f8f3804a3
Notes:
github-actions[bot]
2025-04-23 20:04:28 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/1f8f3804a36 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4387 Reviewed-by: https://github.com/AtkinsSJ ✅
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Transitions: parsing transition-property with valid values</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-transitions/#propdef-transition-property">
|
||||
<meta name="assert" content="transition-property supports the full grammar 'none | <single-transition-property> #'.">
|
||||
<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-property", 'none');
|
||||
test_valid_value("transition-property", 'all');
|
||||
test_valid_value("transition-property", 'one');
|
||||
test_valid_value("transition-property", 'one-two-three');
|
||||
test_valid_value("transition-property", 'one, two, three');
|
||||
test_valid_value("transition-property", 'width, all');
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user