Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/table-max-content-with-scrollable-descendant.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="table-max-content-with-scrollable-descendant-ref.html">
<style>
.container {
width: max-content;
background-color: green;
}
table {
border-spacing: 0;
}
td {
padding: 0;
}
.parent {
height: 79px;
overflow: auto;
}
.content {
width: 10px;
height: 80px;
}
</style>
</head>
<body>
<div class=container>
<table><tr><td>
<div class=parent>
<div class=content></div>
</div>
</td></tr></table>
</div>
</body>
</html>