haikuwebkit/LayoutTests/fast/multicol/filter-in-columns.html

27 lines
349 B
HTML

<style>
section {
columns: 2;
column-gap: 0;
height: 200px;
width: 300px;
}
p {
padding: 0;
margin: 0;
}
.break-after {
-webkit-column-break-after: always;
}
.filtered {
background: white;
-webkit-filter: invert();
}
</style>
<section>
<p class="break-after">Hello</p>
<p class="filtered">World</p>
</section>