Update web-platform-tests to revision b'96ef5777e50f7ed8f54b91525002d6708fc097d7'

This commit is contained in:
WPT Sync Bot 2023-02-19 01:36:19 +00:00
parent 1208fd298d
commit 5867b3554a
39 changed files with 721 additions and 100 deletions

View file

@ -19,6 +19,9 @@ test_invalid_value("transition", "-1s -2s");
test_invalid_value("transition", "steps(1) steps(2)");
test_invalid_value("transition", "none top");
test_invalid_value("transition", "initial 1s");
</script>
</body>
</html>

View file

@ -22,6 +22,11 @@ test_valid_value("transition", "top", ["top", "top 0s ease 0s"]);
test_valid_value("transition", "1s -3s cubic-bezier(0, -2, 1, 3) top", "top 1s cubic-bezier(0, -2, 1, 3) -3s");
test_valid_value("transition", "1s -3s, cubic-bezier(0, -2, 1, 3) top", ["1s -3s, top cubic-bezier(0, -2, 1, 3)", "all 1s ease -3s, top 0s cubic-bezier(0, -2, 1, 3) 0s"]);
test_valid_value("transition", "all", ["all", "all 0s ease 0s"]);
test_valid_value("transition", "all 1s", ["1s", "all 1s ease 0s"]);
test_valid_value("transition", "initial", "initial");
// TODO: Add test with a single negative time.
// TODO: Add test with a single timing-function keyword.
</script>