blob: 85c2db883071f81a6a3a238a11d59348f444611d [file] [log] [blame]
<!DOCTYPE html>
<title>shape-outside on floats with a different writing mode in the float and the container</title>
<style>
.container {
font: 20px/1 Ahem;
color: orange;
width: 100px;
height: 20px;
background-color: blue;
}
</style>
<body>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=122243">Bug 128631</a> - [CSS Shapes] shape-outside does not properly handle different writing modes</p>
<p>You should see an orange square touching the right side of a blue rectangle. There should be a blue square to the right of the orange square.</p>
<div class="container" style="text-align: right; margin-left: 20px;">
<div style="margin-right: 20px">X</div>
</div>
<p>You should see an orange square touching the left side of a blue rectangle. There should be a blue square to the left of the orange square.</p>
<div class="container" style="margin-left: 40px;">
<div style="margin-left: 20px">X</div>
</div>
</body>