summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/clip-path/clip-path-blending-offset.html
blob: 806904d68765b147830c6ee3b27a68df7a4c527d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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>