1
0
Fork 0
firefox/testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

12 lines
521 B
HTML

<!doctype html>
<meta charset="utf-8">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://drafts.csswg.org/cssom-view/#dom-element-scrollheight">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1876745">
<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>