summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html')
-rw-r--r--testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html b/testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html
new file mode 100644
index 0000000000..6ebaf7ad6a
--- /dev/null
+++ b/testing/web-platform/tests/css/css-tables/table-cell-scroll-height.html
@@ -0,0 +1,12 @@
+<!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>