Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/table-cell-scroll-height.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="target" style="display: table-cell; height: 100px; overflow: hidden"></div>
<script>
test(() => {
assert_equals(target.scrollHeight, 100);
}, `scrollHeight on scrollable table cell`);
</script>