1
0
Fork 0
firefox/testing/web-platform/tests/css/css-masking/clip-path/clip-path-blending-offset.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

26 lines
661 B
HTML

<!DOCTYPE html>
<title>CSS Masking: Test clip-path with mix-blend-mode with offset</title>
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#the-clip-path">
<link rel="match" href="clip-path-blending-offset-ref.html">
<style>
div {
width: 100px;
height: 100px;
}
#clip-path {
overflow: hidden;
background: green;
clip-path: polygon(0 0, 100px 0, 100px 30px, 30px 30px, 30px 100px, 0 100px);
}
#blend {
position: absolute;
mix-blend-mode: multiply;
left: 40px;
top: 50px;
background: red;
}
</style>
<div id="clip-path">
<div id="blend"></div>
</div>