You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="This test verifies the nested float element in a multicol container in vertical-rl writing-mode shouldn't contribute to its container'sscrollable overflow area.">
<style>
.scroll-container {
writing-mode: vertical-rl;
inline-size: 100px;
block-size: 100px;
overflow: auto;
}
.multicol {
block-size: 100px;
inline-size: 100px;
column-fill: auto;
column-count: 2;
column-gap: 0;
}
.float {
float: left;
inline-size: 50px;
block-size: 100px;
background: green;
}
</style>
<!--This test passes if the scroll-container has no scrollbar. -->
<p>Test passes if there is a filled green square.</p>