LibWeb: Propagate CSS-wide keyword to transition longhands

Previously we would treat CSS-wide keywords as equivalent to "none"
This commit is contained in:
Callum Law 2025-06-10 17:45:32 +12:00 committed by Sam Atkins
commit 3c6b8d5a2c
Notes: github-actions[bot] 2025-06-16 11:39:11 +00:00
3 changed files with 39 additions and 17 deletions

View file

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