summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-mask-pre-effects-bbox.html
blob: 4ed6f1a37271085d1884ceb66e6807a5323a30f7 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      #container {
        border: 3px dotted black;
        background: yellow;
        overflow: hidden;
        width: 400px;
        max-height: 25px;
      }

      #container.masked {
        mask: url('#fade_mask_bottom');
      }
      .item {
        font-size: 30px;
      }
    </style>
    <script>
      function go() {
        clear();
        insert();
      }

      function clear() {
        // Force reflow:
        container.offsetHeight;

        // Remove mask:
        container.classList.remove('masked');
      }

      function insert() {
        // Add new child:
        var notificationNode = document.createElement('div');
        notificationNode.classList.add('item');
        notificationNode.appendChild(document.createTextNode("PASS"));
        var container = document.getElementById('container');
        container.appendChild(notificationNode);

        // Force reflow:
        container.offsetHeight;

        // Add back mask:
        container.classList.add('masked');

        document.documentElement.classList.remove('reftest-wait');
      }
    </script>
  </head>
  <body onload="go();">
    <div id='container' class="masked"></div>

    <!-- BEGIN SVG MASK: -->
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
      <mask id="fade_mask_bottom"
            maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
        <linearGradient id="fade_gradient_bottom"
                        gradientUnits="objectBoundingBox" x2="0" y2="1">
          <stop stop-color="white" stop-opacity="1" offset="0.7"></stop>
          <stop stop-color="white" stop-opacity="0" offset="1"></stop>
        </linearGradient>
        <rect x="0" y="0" width="1" height="1"
              fill="url(#fade_gradient_bottom)"></rect>
      </mask>
    </svg>
  <!-- END SVG MASK -->

  </body>
</html>