summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/mask-image/mask-image-clip-exclude.html
blob: 21466670b01c3a41bc8afe7e2c2841c19e5d344b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1697311">
<link rel="author" href="" title="Ana Tudor">
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="match" href="mask-image-clip-exclude-ref.html">
<meta name="fuzzy" content="maxDifference=0-1; totalPixels=0-2000">
<title>mask-image + mask-clip + mask-composite: exclude on different background boxes</title>
<style>
div {
  display: inline-block;
  width: 100px;
  height: 100px;
  padding: 10px;
  background: linear-gradient(green, green) border-box;
  mask: linear-gradient(red, red) content-box exclude, linear-gradient(red, red);
}
</style>
<div></div>