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/keyframes-zero-angle-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<title>CSS Animations Test: Chrome crash when using zero angles in keyframes</title>
<body>
<div id="test_div">
Output does not matter, only check that we do not crash with zero angles.
</div>
<script>
let anim = new KeyframeEffect(test_div, [{ "transform": "rotate(0) scale3D(1,1,1)" }]);
new Animation(anim, document.timeline);
</script>
</body>