quirks-mode-no-height-is-still-bounded-ref.html (349B)
1 <html> 2 <!-- Quirks mode used deliberately --> 3 <meta charset=utf-8> 4 <style> 5 geolocation { 6 font-size: 14px; 7 height: fit-content; 8 } 9 </style> 10 <body> 11 <geolocation id="geolocation"></geolocation> 12 <script> 13 let el = document.getElementById("geolocation"); 14 el.style.height = (el.clientHeight + 20) + "px"; 15 </script> 16 </body> 17 </html>