blob: c3ac3ec017d3cf517c5ccd7980208c2bc028a4f1 [file] [log] [blame]
<!DOCTYPE html>
<style>
.container {
width: 200px;
height: 100px;
font: 50px/1 Ahem, sans-serif;
background-color: red;
margin-bottom: 50px;
color: green;
}
.float-left-inner {
width: 100px;
height: 100px;
float: left;
background-color: green;
shape-outside: inset(0 50% 0 0);
}
.float-left-outer {
margin-right: 50px;
width: 50px;
height: 100px;
float: left;
background-color: green;
shape-outside: inset(0 50% 0 0);
}
.float-right-inner {
width: 100px;
height: 100px;
float: right;
background-color: green;
shape-outside: inset(0 0 0 50%);
}
.float-right-outer {
margin-left: 50px;
width: 50px;
height: 100px;
float: right;
background-color: green;
shape-outside: inset(0 0 0 50%);
}
</style>
<script src="../../../resources/ahem.js"></script>
<body>
<p>Shapes should not affact float stacking, but should affect inline content.</p>
<p>You should see two green rectanges. There should be no red.</p>
<div class="container">
<div class="float-left-inner"></div>
<div class="float-left-outer"></div>
X<br/>
X
</div>
<div class="container" style="text-align: right">
<div class="float-right-inner"></div>
<div class="float-right-outer"></div>
X<br/>
X
</div>
</body>