1379041.html (283B)
1 <!doctype html> 2 <html style="font-size: 8px"> 3 <div style="font-size: 2rem">Should be 16px black text.</div> 4 <script> 5 window.onload = function() { 6 let div = document.querySelector('div'); 7 window.getDefaultComputedStyle(div).color; 8 div.style.color = "black"; 9 } 10 </script> 11 </html>