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