LibWeb: Allow multiple values for transition-behavior

This commit is contained in:
Callum Law
2025-11-13 19:36:40 +13:00
committed by Sam Atkins
parent 9de4e3a0eb
commit b0ab94c00c
Notes: github-actions[bot] 2025-11-28 16:17:21 +00:00
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<style>
#foo {
transition-behavior: allow-discrete, normal;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println(document.styleSheets[0].cssRules[0].cssText);
});
</script>
</html>