keyframes-zero-angle-crash.html (424B)
1 <!doctype html> 2 <html> 3 <title>CSS Animations Test: Chrome crash when using zero angles in keyframes</title> 4 <link rel="help" href="https://crbug.com/1307230"> 5 <body> 6 <div id="test_div"> 7 Output does not matter, only check that we do not crash with zero angles. 8 </div> 9 <script> 10 let anim = new KeyframeEffect(test_div, [{ "transform": "rotate(0) scale3D(1,1,1)" }]); 11 new Animation(anim, document.timeline); 12 </script> 13 </body>