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

26 lines
351 B
HTML

<style>
section {
height: 200px;
width: 300px;
position: relative;
}
p {
padding: 0;
margin: 0;
}
.filtered {
position: absolute;
left: 150px;
top: 0;
width: 150px;
background: white;
-webkit-filter: invert();
}
</style>
<section>
<p class="break-after">Hello</p>
<p class="filtered">World</p>
</section>