mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
We now: - Serialize longhands in the correct order - Support serializing multiple values - Include default longhands where required (to distinguish animation-name from that longhand).
32 lines
807 B
HTML
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>
|