blob: 83b8eeb4d05a808d93f746e1040bf5627350fb71 [file]
<style>
.container {
writing-mode: vertical-lr;
font-family: Monospace;
font-size: 20px;
height: 200px;
width: 200px;
}
.inline_block {
display: inline-block;
width: 100px;
height:100px;
background-color: green;
vertical-align: bottom;
}
</style>
<!-- PASS if the green box does not overlap text -->
<div class=container>some text<div class=inline_block></div></div>