mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
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>
17 lines
302 B
HTML
Vendored
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>
|