transition-during-style-attr-mutation.html (361B)
1 <!DOCTYPE HTML> 2 <title>Don't crash when mutating style attribute with non-initial transition</title> 3 <link rel="help" href="https://crbug.com/1313554"> 4 <style> 5 #foo { transition: --unset 1s linear; } 6 </style> 7 <div id=foo style="background-color:red">PASS if no crash</div> 8 <script> 9 foo.offsetTop; 10 foo.style.backgroundColor = 'green'; 11 foo.offsetTop; 12 </script>