Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-021.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
<html>
<meta charset="utf-8">
<title>CSS Shape Test: horizontal-tb, float right, inset(10px round 0 40px/ 0 60px) border-box</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="reference/shape-outside-inset-021-ref.html">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the inset(10px round 0 40px/ 0 60px) border-box value under horizontal-tb writing-mode.">
<meta name="fuzzy" content="maxDifference=0-8; totalPixels=0-4">
<style>
.container {
writing-mode: horizontal-tb;
direction: rtl;
inline-size: 200px;
line-height: 0;
}
.shape {
float: right;
shape-outside: inset(10px round 0 40px/ 0 60px) border-box;
clip-path: inset(10px round 0 40px/ 0 60px) border-box;
box-sizing: content-box;
block-size: 40px;
inline-size: 40px;
padding: 20px 10px;
border: solid lightgreen;
border-width: 30px 20px;
background-color: orange;
}
.box {
display: inline-block;
inline-size: 80px;
background-color: blue;
}
.long {
inline-size: 200px;
}
</style>
<main class="container">
<div class="shape"></div>
<div class="long box" style="block-size: 10px;"></div> <!-- Fill the inset space -->
<div class="box" style="block-size: 24px;"></div> <!-- Box at corner -->
<div class="box" style="block-size: 36px;"></div>
<div class="box" style="block-size: 36px;"></div>
<div class="box" style="block-size: 24px;"></div> <!-- Box at corner -->
<div class="long box" style="block-size: 10px;"></div> <!-- Fill the inset space -->
</main>
</html>