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-infinite-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
.test {
width: 200px; overflow: hidden; line-height: 0;
}
.float {
float: left;
width: 100px;
height: 100px;
background: orange;
shape-outside: polygon(0 0, 100% 100%, 0 100%);
clip-path: polygon(0 0, 100% 100%, 0 100%);
}
span {
display: inline-block;
width: 90px;
background: rebeccapurple;
}
</style>
<div class="test">
<div class="float"></div>
<span style="height: 20px;"></span><span style="height: 22px;"></span>
</div>