summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/scroll.html
blob: e906e456865119e38e6e98cba22e5b2d498d32e8 (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
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=0.5" />
    <style type="text/css">
      body {
        margin: 0;
        /* background contains one extra transparent.gif because we want trick the
      contentful paint detection; We want to make sure the background is loaded
      before the test starts so we always wait for the contentful paint timestamp
      to exist, however, gradient isn't considered as contentful per spec, so Gecko
      wouldn't generate a timestamp for it. Hence, we added a transparent gif
      to the image list to trick the detection. */
        background: url("/assets/www/transparent.gif"),
          linear-gradient(135deg, red, white);
      }

      #one {
        background-color: red;
        width: 200vw;
        height: 33vh;
      }

      #two {
        background-color: green;
        width: 200vw;
        height: 33vh;
      }

      #three {
        background-color: blue;
        width: 200vw;
        height: 33vh;
      }

      #four {
        background-color: purple;
        width: 200vw;
        height: 200vh;
      }
    </style>
  </head>
  <body>
    <div id="one"></div>
    <div id="two"></div>
    <div id="three"></div>
    <div id="four"></div>
    <script>
      document.getElementById("two").addEventListener("touchstart", e => {
        console.log("preventing default");
        e.preventDefault();
      });

      document.getElementById("three").addEventListener("touchstart", e => {
        console.log("not preventing default");
      });
    </script>
  </body>
</html>