1315894-1.html (273B)
1 <!DOCTYPE html> 2 <div style="display: none"><span>x</span></div> 3 <script> 4 document.body.offsetWidth; 5 document.querySelector("div").style.display = "inline"; 6 document.body.offsetWidth; 7 document.querySelector("span").style.color = "blue"; 8 document.body.offsetWidth; 9 </script>