table-cell-scroll-height.html (521B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-element-scrollheight"> 6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1876745"> 7 <div id="target" style="display: table-cell; height: 100px; overflow: hidden"></div> 8 <script> 9 test(() => { 10 assert_equals(target.scrollHeight, 100); 11 }, `scrollHeight on scrollable table cell`); 12 </script>