summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/mask-image/mask-clip-8.html
blob: 924920ffacafcfdf3cb71732389ccb768ba60d94 (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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CSS Masking: mask-clip: clip mask image</title>
    <link rel="help" href="http://www.w3.org/TR/css-masking-1/#the-mask-clip">
    <link rel="match" href="mask-clip-8-ref.html">
    <meta name="assert" content="Check fall back values for fill-box (:content-box), stroke-box and view-box (:border-box).">
    <style type="text/css">
      div.outer {
        /*
         * content box: 40 x 20
         * padding box: 52 x 38
         * border  box: 60 x 50
         * margin  box: 66 x 54
         */
        background-color: purple;
        position: absolute;
        top: 10px;
        margin: 1px 2px 3px 4px;
        border: solid transparent;
        border-width: 8px 2px 4px 6px;
        padding: 6px 9px 12px 3px;
        width: 40px;
        height: 20px;
        mask-size: 100% 100%;
        mask-image: url(support/transparent-100x50-blue-100x50.svg);
      }

      div.first {
        left: 10px;
        mask-origin: stroke-box;
      }

      div.second {
        left: 110px;
        mask-origin: view-box;
      }

      div.third {
        left: 210px;
        mask-origin: fill-box;
      }

    </style>
  </head>
  <body>
    <div class="outer mask first"></div>
    <div class="outer mask second"></div>
    <div class="outer mask third"></div>
  </body>
</html>