Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Overflow Test: scrollbar-gutter size contributes to the scroll container's intrinsic size with "overflow:auto"</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="overflow-auto-scrollbar-gutter-intrinsic-002-ref.html">
<style>
.line {
display: flex;
}
.container {
block-size: 50px;
border: 5px solid black;
overflow: auto;
scrollbar-gutter: stable both-edges;
margin: 10px;
}
.tall {
/* trigger overflow */
block-size: 5000px;
}
</style>
<div class="line">
<div class="container">
<div>I should not wrap</div>
</div>
<div class="container">
<div class="tall">I should not wrap</div>
</div>
</div>
<div class="line">
<div class="container" style="writing-mode: vertical-rl">
<div>I should not wrap</div>
</div>
<div class="container" style="writing-mode: vertical-rl">
<div class="tall">I should not wrap</div>
</div>
<div class="container" style="writing-mode: vertical-lr">
<div>I should not wrap</div>
</div>
<div class="container" style="writing-mode: vertical-lr">
<div class="tall">I should not wrap</div>
</div>
</div>
</html>