summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/helper_hittest_hoisted_scrollinfo.html
blob: 3427c8da47f73d9fcad03a6b58caa9141a36dcf9 (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
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE HTML>
<html>
<head>
  <title>Hit-testing on a scrollframe forced to be inactive by being inside a filter</title>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <script src="/tests/SimpleTest/paint_listener.js"></script>
  <meta name="viewport" content="width=device-width"/>
<style>
    #withfilter {
        filter: url(#menushadow);
    }

    #scroller {
        width: 300px;
        height: 500px;
        overflow: scroll;
    }

    .spacer {
        height: 1000px;
        background-image: linear-gradient(red, blue);
    }
</style>
</head>
<body>
 <div id="withfilter">
  <div id="scroller">
   <div class="spacer"></div>
  </div>
 </div>
<!-- the SVG below copied directly from the Gecko Profiler code that
     demonstrated the original bug. It basically generates a bit of a "drop
     shadow" effect on the div it's applied to. Original SVG can be found at
     https://github.com/firefox-devtools/profiler/blame/624f71bce5469cf4f8b2be720e929ba69fa6bfdc/res/img/svg/shadowfilter.svg -->
 <svg xmlns="http://www.w3.org/2000/svg">
   <defs>
     <filter id="menushadow" color-interpolation-filters="sRGB" x="-10" y="-10" width="30" height="30">
       <feComponentTransfer in="SourceAlpha">
         <feFuncA type="linear" slope="0.3"/>
       </feComponentTransfer>
       <feGaussianBlur stdDeviation="5"/>
       <feOffset dy="10" result="shadow"/>
       <feComponentTransfer in="SourceAlpha">
         <feFuncA type="linear" slope="0.1"/>
       </feComponentTransfer>
       <feMorphology operator="dilate" radius="0.5" result="rim"/>
       <feMerge><feMergeNode in="shadow"/><feMergeNode in="rim"/></feMerge>
       <feComposite operator="arithmetic" in2="SourceAlpha" k2="1" k3="-0.1"/>
       <feMerge><feMergeNode/><feMergeNode in="SourceGraphic"/></feMerge>
     </filter>
   </defs>
 </svg>
</body>
<script type="application/javascript">
async function test() {
  var config = getHitTestConfig();
  var utils = config.utils;

  // layerize the scrollable frame. It's inside the filter so this
  // shouldn't actually change the fact that it will still be main-thread
  // scrolled.
  var scroller = document.querySelector("#scroller");
  utils.setDisplayPortForElement(0, 0, 300, 500, scroller, 1);
  await promiseApzFlushedRepaints();

  var expectedHitFlags =
    APZHitResultFlags.VISIBLE | APZHitResultFlags.INACTIVE_SCROLLFRAME;
  checkHitResult(hitTest(centerOf(scroller)),
                 expectedHitFlags,
                 utils.getViewId(scroller),
                 utils.getLayersId(),
                 "scrollable content inside a filter");
}

waitUntilApzStable()
.then(test)
.then(subtestDone, subtestFailed);

</script>
</html>