blob: a467bccf3365ff7e2126a4000afd6390391c660c [file] [log] [blame]
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<meta charset="utf-8">
<title>CSS Shape Test: float left, content-box, border-radius</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#shapes-from-box-values">
<link rel="match" href="reference/shape-outside-content-box-border-radius-001-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the content-box and border-radius value.">
<style>
.container {
width: 200px;
line-height: 0;
}
.shape {
float: left;
shape-outside: content-box;
border-radius: 50%;
box-sizing: content-box;
height: 120px;
width: 120px;
padding: 10px;
border: 5px solid lightgreen;
margin: 5px;
background-color: orange;
}
.box {
display: inline-block;
width: 60px;
background-color: blue;
}
.longbox {
display: inline-block;
width: 200px;
height: 20px;
background-color: blue;
}
</style>
<main class="container">
<div class="shape"></div>
<div class="longbox"></div> <!-- Saturate the margin and border space -->
<div class="box" style="height: 24px;"></div> <!-- Box at corner -->
<div class="box" style="height: 36px;"></div>
<div class="box" style="height: 36px;"></div>
<div class="box" style="height: 24px;"></div> <!-- Box at corner -->
<div class="longbox"></div> <!-- Saturate the margin and border space -->
</main>
</html>