Files
ladybird/Tests/LibWeb/Text/input/css/animation-name-is-valid-other-property-value.html
Callum Law 517e3f5f1d LibWeb: Serialize animation according to spec
We now:
 - Serialize longhands in the correct order
 - Support serializing multiple values
 - Include default longhands where required (to distinguish
   animation-name from that longhand).
2025-09-24 11:58:20 +01:00

32 lines
807 B
HTML

<!DOCTYPE html>
<html>
<body>
<style>
#timing-function {
animation: none;
animation-name: eAsE-In-OuT;
}
#direction {
animation: none;
animation-name: rEvErSe;
}
#fill-mode {
animation: none;
animation-name: fOrWaRdS;
}
#running-state {
animation: none;
animation-name: pAuSeD;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
for (const rule of document.styleSheets[0].cssRules) {
println(rule.cssText);
}
});
</script>
</body>
</html>