summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-images/cross-fade-target-alpha.html
blob: a10a2bfe8dff5d4cd0fbd9e834ec27e2cc366870 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
  <head>
    <title>cross-fade() with less than 100% total percentage gets faded correctly</title>
    <link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
    <link rel="help" href="https://drafts.csswg.org/css-images-4/#cross-fade-function">
    <link rel="match" href="cross-fade-target-alpha-ref.html">
    <!-- Implementations compositing in 8-bit may get fairly strong accuracy issues here,
         so the fuzz needs to be set pretty liberally. -->
    <meta name="fuzzy" content="0-8;0-300000">
    <style>
      .outer {
        display:block;
        width: 500px;
        height: 500px;
        padding: 50px;
        background: linear-gradient(90deg, red, green);
      }
      .inner {
        display: block;
        width: 100%;
        height: 100%;
        color: white;
        /* NOTE: The same gradient several times, so that we can easily simulate this using opacity. */
        background: cross-fade(
          10% linear-gradient(#e66465, #9198e5),
          10% linear-gradient(#e66465, #9198e5),
          10% linear-gradient(#e66465, #9198e5),
          10% linear-gradient(#e66465, #9198e5),
          10% linear-gradient(#e66465, #9198e5),
          10% linear-gradient(#e66465, #9198e5)
        );
      }
    </style>
  </head>
  <p>The inner gradient should be (in total) 60% covering over the outer.</p>
  <div class="outer">
    <div class="inner">
    </div>
  </div>
</html>