1374062.html (432B)
1 <!doctype html> 2 <title> 3 Test for bug 1374062: We don't update the root font-size just because the 4 element has no parent element. 5 </title> 6 <style> 7 :root { font-size: 5px; } 8 [restyled] { color: green; font-size: 2rem; } 9 </style> 10 <div> 11 Should be green, and have a 10px font-size. 12 </div> 13 <script> 14 getComputedStyle(document.createElement('div')).color; 15 document.querySelector('div').setAttribute("restyled", ""); 16 </script>