servo/tests/wpt/tests/css/css-animations/crashtests/chrome-bug-405795970.html
Servo WPT Sync bfa0a61375
Sync WPT with upstream (30-04-2025) (#36785)
Automated downstream sync of changes from upstream as of 30-04-2025
[no-wpt-sync]

Signed-off-by: WPT Sync Bot <ghbot+wpt-sync@servo.org>
2025-04-30 19:46:03 +00:00

17 lines
302 B
HTML
Vendored

<!DOCTYPE html>
<link rel="help" href="https://crbug.com/405795970">
<style>
@keyframes --anim {
from {
width: calc(10px * sibling-index());
}
to {
width: calc(50px);
}
}
#target {
animation: --anim 2s;
}
</style>
<p>Pass if no crash</p>
<div id="target"></div>