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/transform-css-animation-squash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS transform animation with layer squashing should not crash</title>
<style>
@keyframes test {
to { transform: rotate(360deg); }
}
</style>
<div id="target" style="animation: test 1s;">
<div style="transform: translateZ(0);"></div>
<div style="position: relative;"></div>
</div>