blob: 14e5232f06a7b1a575580aa37fa05160fc367419 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="max-width-container-with-scrollable-descendant-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollbar-sizing">
<style>
.container {
background-color: green;
width: max-content;
}
.parent {
height: 79px;
overflow: auto;
}
.content {
width: 10px;
height: 80px;
}
</style>
</head>
<body>
<div class=container>
<div class=parent>
<div class=content></div>
</div>
</div>
</body>
</html>