declaration-block-all-crash.html (322B)
1 <!doctype html> 2 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1711189"> 3 <div></div> 4 <script> 5 let div = document.querySelector("div"); 6 let cs = getComputedStyle(div); 7 for (let i = 0; i < cs.length; ++i) 8 div.style.setProperty(cs[i], cs.getPropertyValue(cs[i])); 9 div.style.cssText 10 </script>