1
0
Fork 0
firefox/testing/web-platform/tests/css/css-shapes/shape-outside-infinite-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
546 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://issues.chromium.org/issues/379143305">
<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>