ladybird/Tests/LibWeb/Crash/CSS/animated-revert-shorthand.html
Callum Law d69e62425e LibWeb: Resolve CSS-wide keywords in keyframe properties
Also resolves the `revert` keyword against longhand properties rather
than potential shorthands as this could cause a crash.

Gains us 20 WPT tests.
2025-08-27 14:50:58 +02:00

7 lines
151 B
HTML

<!DOCTYPE html>
<html>
<div id="foo"></div>
<script>
foo.animate([{ margin: "revert" }, { margin: "0" }], 1000);
</script>
</html>