summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html')
-rw-r--r--testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html b/testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html
new file mode 100644
index 0000000000..e31a7805c7
--- /dev/null
+++ b/testing/web-platform/tests/css/css-tables/table-cell-overflow-auto-scrolled.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<link rel="help" href="https://drafts.csswg.org/css-tables-3/#bounding-box-assignment">
+<link rel="match" href="table-cell-overflow-auto-scrolled-ref.html">
+<meta name="assert" content="Table cell with overflow:auto and overflowing contents is scrollable">
+<table style="table-layout: fixed; width: 100px; height: 100px; border: solid; border-spacing: 0">
+ <tr>
+ <td id="cell" style="background: green; overflow: auto; vertical-align: top; padding: 0">
+ <div style="width: 200px; height: 50px; background: hotpink; border: 2px solid yellow"></div>
+ </td>
+ </tr>
+</table>
+<script>
+onload = () => {
+ cell.scrollLeft = 120;
+}
+</script>