client-props-root-display-none-crash.html (725B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <meta name="viewport" content="width=device-width"> 4 <link rel="help" href="https://drafts.csswg.org/cssom-view/#extension-to-the-element-interface"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1655741"> 6 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 7 <link rel="author" title="Mozilla" href="https://mozilla.org"> 8 <title>Shouldn't assert when asking for the client* props on the scrolling element</title> 9 <style> 10 :root { display: none } 11 </style> 12 <script> 13 document.scrollingElement.clientTop; 14 document.scrollingElement.clientLeft; 15 document.scrollingElement.clientHeight; 16 document.scrollingElement.clientWidth; 17 </script>