Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/chrome-bug-415627003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
@keyframes --anim {
from {
text-size-adjust: calc(50% * sibling-index());
}
to {
text-size-adjust: calc(50%);
}
}
#target {
animation: --anim 2s;
}
</style>
<p>Pass if no crash</p>
<div id="target"></div>